Skip to content
17 changes: 15 additions & 2 deletions assets/scss/_k8s_nav.scss
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally, avoid !important in CSS. Not using it makes the stylesheet a lot easier to maintain.

Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,25 @@
}

.navbar-brand__name {
display: none;
color: white;

@include media-breakpoint-up(md) {
display: none;
}
}


.navbar-brand {
@include media-breakpoint-down(sm) {
margin-left: auto;
}

svg {
height: 38px;

#its-pronounced path {
fill: white;
}
}
}

Expand Down Expand Up @@ -52,6 +61,10 @@
background: white !important;
box-shadow: 0 1px 2px $medium-grey;

.navbar-brand__name {
color: $dark-grey;
}

.navbar-nav .nav-link, #hamburger {
color: $dark-grey;

Expand All @@ -75,7 +88,7 @@
}

.navbar-brand__logo.navbar-logo svg #its-pronounced path {
fill: $primary;
fill: $dark-grey !important;
}
}

Expand Down