Fix the 'finer details' with the handbook UI

This commit is contained in:
KingRainbow44
2023-05-26 13:49:10 -04:00
parent 77796aa8b6
commit b0714f209c
3 changed files with 7 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ html {
--background-color: #25294a; --background-color: #25294a;
--primary-color: #2d325a; --primary-color: #2d325a;
--secondary-color: #202442; --secondary-color: #202442;
--accent-color: #4b5396;
--text-primary-color: #FFFFFF; --text-primary-color: #FFFFFF;
--unselected-color: #c7c8d0; --unselected-color: #c7c8d0;
@@ -82,6 +83,6 @@ button {
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: #4b5396; background: var(--accent-color);
border-radius: 10px; border-radius: 10px;
} }

View File

@@ -17,10 +17,11 @@
&:hover { &:hover {
cursor: pointer; cursor: pointer;
transition: 0.1s ease-in-out all; box-shadow: 0 0 10px 5px var(--accent-color);
box-shadow: 0 0 10px 5px var(--primary-color);
scale: 1.01; scale: 1.01;
} }
transition: 0.1s ease-in-out all;
} }
.HomeButton:hover { .HomeButton:hover {

View File

@@ -11,9 +11,10 @@
&:hover { &:hover {
cursor: pointer; cursor: pointer;
transition: 0.1s ease-in-out all;
backdrop-filter: brightness(0.9); backdrop-filter: brightness(0.9);
} }
transition: 0.2s ease-in-out all;
} }
.SideBarButton_Icon { .SideBarButton_Icon {