This commit is contained in:
a 2020-08-20 23:09:53 +02:00
parent 9ede15c7b3
commit 4b81b1afcd
2 changed files with 19 additions and 0 deletions

View File

@ -1 +1,2 @@
*.svelte
*.scss

18
src/frontend/common.scss Normal file
View File

@ -0,0 +1,18 @@
@mixin button {
cursor: pointer;
color: var(--text-color-3);
}
@mixin button_green {
background-color: var(--green-1);
&:hover {
background-color: var(--green-2);
}
}
@mixin button_red {
background-color: var(--red-1);
&:hover {
background-color: var(--red-2);
}
}