added stuff

This commit is contained in:
Charlie Root 2024-04-09 23:11:33 +02:00
commit 9d0ebdfbd0
907 changed files with 70990 additions and 0 deletions

View file

@ -0,0 +1,3 @@
// Components
@import "desktopMenu";
@import "desktopIcons";

View file

@ -0,0 +1,18 @@
.desktopIcons {
margin: 24px 0 0 24px;
}
.desktopIcon {
border-radius: 6px;
padding: 6px;
transition: all 200ms cubic-bezier(0, 0, 1, 1);
&:hover {
background: transparentize($lavender, 0.3);
}
}
.desktopIconLabel {
color: $surface;
font-family: $font;
}

View file

@ -0,0 +1,29 @@
.desktopMenu {
background: $primary;
color: $onSurface;
font-family: $font;
border-radius: 14px;
padding: 6px 3px;
}
.desktopMenuItem {
border-radius: 14px;
margin: 0 3px;
padding: 6px 12px;
transition: all 0.2s $materialAccel;
&:hover {
background: lighten($surfaceVariant, 5%);
color: lighten($onSurface, 5%);
}
}
.desktopMenuItemIcon {
font-family: $iconFont;
padding: 2px 8px 2px 2px;
}
.separator {
background: $surface;
padding: 1px 3px;
}