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 HTML and CSS Code
  • Loading branch information
Olucas7 committed Apr 19, 2022
commit 58b90e2d040b1267f067539a500e694d68c89d41
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</ng-container>
</td>
<td class="col lg-col-scroll">{{ entry.description }}</td>
<td class="col lg-col">
<td class="col lg-col-scroll tech-style">
<ng-container *ngIf="entry.technologies.length > 0">
<div *ngFor="let technology of entry.technologies" class="badge bg-secondary text-wrap">
{{ technology }}
Expand All @@ -55,4 +55,4 @@
</tr>
</tbody>
</table>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
}

.col-height {
min-height: 80px;
max-height: 150px;
min-height: auto;
max-height: 7rem;
// height: auto;
}

.x-sm-col {
Expand Down Expand Up @@ -44,6 +45,10 @@
overflow-y: auto;
}

.tech-style{
width: 12em;
}

.lg-col-scroll::-webkit-scrollbar {
width: 0.5em;
}
Expand Down Expand Up @@ -128,4 +133,4 @@ table.dataTable thead .sorting_desc {
text-transform: capitalize;
font-style: italic;
cursor: pointer;
}
}