Skip to content

Commit 8ef21ab

Browse files
committed
fix: #256 styling customer name
1 parent 9b6516f commit 8ef21ab

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

src/app/modules/customer-management/components/management-customer-projects/management-customer-projects.component.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
<hr/>
2+
<nav class="nav-box" *ngIf="customerName">
3+
<h4 class="navbar-brand nav-title">{{customerName}}</h4>
4+
</nav>
15
<div class="container border mb-4 mt-0">
2-
<h3 class="title">{{customerName}}</h3>
36
<ul class="nav nav-tabs mt-2" id="myTab" role="tablist">
47
<li class="nav-item">
58
<a
Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
@import '../../../../../styles/colors.scss';
22

33
.nav-active {
4-
color: $secondary;
4+
color: $primary;
55
}
66
.nav-item > a:hover {
77
opacity: 0.6;
88
}
99

10-
.title {
10+
.nav-box {
11+
background-color: $primary;
1112
text-align: center;
12-
padding: 12px;
13+
}
14+
15+
.nav-title {
16+
vertical-align: center;
17+
color: white;
18+
font-size: large;
19+
font-weight: bold;
1320
}

0 commit comments

Comments
 (0)