chore: added app navbar; adjusted colors and global styles

This commit is contained in:
2025-09-27 15:40:02 +02:00
parent fa4504fec7
commit f54eada94d
7 changed files with 83 additions and 25 deletions
+6 -1
View File
@@ -1,5 +1,6 @@
@use 'fonts';
@use 'colors';
@use 'sass:color';
// Global scrollbar style
::-webkit-scrollbar {
@@ -76,7 +77,7 @@ button.g-button {
}
&:hover:not([data-disabled='true']) {
background-color: colors.$bgColLighter;
background-color: color.adjust(colors.$bgColDarker, $lightness: 15%);
}
}
@@ -112,6 +113,10 @@ button.g-button {
display: flex;
justify-content: center;
align-items: center;
&:focus-visible {
outline: 1px solid white;
}
}
}