added stuff
This commit is contained in:
parent
e8d9044d2b
commit
9d0ebdfbd0
907 changed files with 70990 additions and 0 deletions
|
@ -0,0 +1,3 @@
|
|||
// Components
|
||||
@import "desktopMenu";
|
||||
@import "desktopIcons";
|
|
@ -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;
|
||||
}
|
|
@ -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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue