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
Next Next commit
Adding css rules for Technology Area presentation in report section.
  • Loading branch information
Olucas7 committed Mar 24, 2022
commit 28983506bdb7fd761fe000fcffd06d522d659cd8
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,13 @@
</ng-container>
</td>
<td class="col lg-col">{{ entry.description }}</td>
<td class="col lg-col">{{ entry.technologies }}</td>
<td class="col lg-col">
<ng-container *ngIf="entry.technologies.length > 0">
<div *ngFor="let techology of entry.technologies" class="badge bg-secondary text-wrap">
{{ techology }}
</div>
</ng-container>
</td>
</tr>
</tbody>
</table>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,15 @@ table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
background-image: none;
}

.badge {
display: flex;
flex-direction: column;
justify-content: space-between;
margin: 0.5em;
color: #FFFFFF !important;
font-weight: bold;
text-transform: capitalize;
font-style: italic;
cursor: pointer;
}