Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Refactoring...
  • Loading branch information
Olucas7 committed Apr 19, 2022
commit ba25e0c2255d78795f0d11ec83a7233dac6909ea
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
</a>
</ng-container>
</td>
<td class="col lg-col-scroll">{{ entry.description }}</td>
<td class="col lg-col-scroll tech-style">
<td class="col lg-scroll">{{ entry.description }}</td>
<td class="col lg-scroll">
<ng-container *ngIf="entry.technologies.length > 0">
<div *ngFor="let technology of entry.technologies" class="badge bg-secondary text-wrap">
{{ technology }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

.col-height {
min-height: auto;
max-height: 7rem;
max-height: 8rem;
// height: auto;
}

Expand All @@ -34,7 +34,7 @@
border: none;
}

.lg-col-scroll {
@mixin scroll-style {
width: 40em;
overflow: hidden;
white-space: normal;
Expand All @@ -43,25 +43,28 @@
margin: 8px 10px 0px 10px;
border: none;
overflow-y: auto;
overflow-wrap: break-word;
&::-webkit-scrollbar {
width: 0.5em;
}

&::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

&::-webkit-scrollbar-thumb {
background-color: #7a8486;
outline: 1px solid #7a8486;
border-radius: 0.5em;
}
}

.tech-style{
width: 12em;
.lg-scroll{
@include scroll-style;
}

.lg-col-scroll::-webkit-scrollbar {
width: 0.5em;
}

.lg-col-scroll::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.lg-col-scroll::-webkit-scrollbar-thumb {
background-color: #7a8486;
outline: 1px solid #7a8486;
border-radius: 0.5em;
}

.hidden-col {
display: none;
Expand Down