-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new color palette options with main #002337. Also introducted/c…
…hanged z-index of the elements such as: - both layouts(1), - sidebar (0 or 3 when collapsed), - and hamburger menu(2) at (dashboard) Need to move both Headbar and Sidebar classes into globals.css because of the dark-mode integration in near future, to be managed in the same file like body, .root, .header, and .footer.
- Loading branch information
Showing
5 changed files
with
60 additions
and
29 deletions.
There are no files selected for viewing
26 changes: 25 additions & 1 deletion
26
client/app/components/(Layout)/(dashboard)/Body/Main/Title/PageTitleWrapper.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
client/app/components/(Layout)/(dashboard)/Sidebar/HamburgerWrapper.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
.hamburger-wrapper { | ||
z-index: 2; | ||
|
||
display: flex; | ||
position: absolute; | ||
left: 16px; | ||
top: 12px; | ||
z-index: 1; | ||
} | ||
|
||
@media (min-width: 40rem) { | ||
.hamburger-wrapper { | ||
display: none; | ||
z-index: 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters