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
fix: #256 styling customer name
  • Loading branch information
enriquezrene committed May 21, 2020
commit 8ef21ab48547e8de258048d11a6adf4e8257ec77
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<hr/>
<nav class="nav-box" *ngIf="customerName">
<h4 class="navbar-brand nav-title">{{customerName}}</h4>
</nav>
<div class="container border mb-4 mt-0">
<h3 class="title">{{customerName}}</h3>
<ul class="nav nav-tabs mt-2" id="myTab" role="tablist">
<li class="nav-item">
<a
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
@import '../../../../../styles/colors.scss';

.nav-active {
color: $secondary;
color: $primary;
}
.nav-item > a:hover {
opacity: 0.6;
}

.title {
.nav-box {
background-color: $primary;
text-align: center;
padding: 12px;
}

.nav-title {
vertical-align: center;
color: white;
font-size: large;
font-weight: bold;
}