Skip to content

Commit 66c95eb

Browse files
Use burntorange for labels; increase contrast with card headers; use larger font size for card headers
1 parent 0541942 commit 66c95eb

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

frontend/src/app/data/browse/browse.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<lc-breadcrumb [breadcrumbs]="breadcrumbs" />
66

7-
<div class="d-flex flex-column bg-light">
7+
<div class="d-flex flex-column bg-light-subtle">
88
<div class="search-section d-flex align-items-center justify-content-center bg-white shadow-sm p-4">
99
<div class="container">
1010
<form

frontend/src/app/data/browse/search-item/browse-list-item.component.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
@let item = listItem();
2-
<div class="card mb-4">
3-
<div class="card-header position-relative">
4-
<a class="icon-link stretched-link mb-1" [routerLink]="[item.link]">
2+
<section class="card mb-4">
3+
<h3 class="card-header position-relative h5 py-3">
4+
<a class="icon-link stretched-link text-decoration-none" [routerLink]="[item.link]">
55
<lc-icon [icon]="item.icon" />
66
{{ item.name }}
77
</a>
8-
</div>
8+
</h3>
99
<div class="card-body">
1010
<p class="block">
1111
@if (item.description) {
@@ -19,7 +19,7 @@
1919
<ul class="block inline-list no-delimiter">
2020
@for (label of item.labels; track label) {
2121
<li class="inline-list-item">
22-
<span class="badge rounded-pill text-bg-secondary">
22+
<span class="badge rounded-pill text-bg-burntorange">
2323
{{ label }}
2424
</span>
2525
</li>
@@ -142,4 +142,4 @@
142142
</small>
143143
</div>
144144
}
145-
</div>
145+
</section>

0 commit comments

Comments
 (0)