-
Notifications
You must be signed in to change notification settings - Fork 17
[SMT-66] [SMT-67] [SMT-68] Change header colours #2245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,6 +38,21 @@ $nav-active-background-color-uat: lighten($nav-background-color-uat, 10%); | |
| } | ||
| } | ||
|
|
||
| #header { | ||
| &.env-dev #header-main { | ||
| background-color: $nav-background-color-dev; | ||
| } | ||
|
|
||
| &.env-test #header-main { | ||
| background-color: $nav-background-color-test; | ||
| } | ||
|
|
||
| &.env-trn #header-main, | ||
| &.env-uat #header-main { | ||
| background-color: $nav-background-color-uat; | ||
| } | ||
|
Comment on lines
+48
to
+53
|
||
| } | ||
|
|
||
| #top-nav { | ||
| margin-bottom: 0; | ||
| background-color: $nav-background-color; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are now two separate
#header { ... }blocks in this file (one for banner/working-indicator and one for env-specific#header-mainbackground). Consider merging them into a single#headerblock to keep related header styling together and reduce the chance of future conflicting edits.