common
This commit is contained in:
parent
9ede15c7b3
commit
4b81b1afcd
2 changed files with 19 additions and 0 deletions
|
@ -1 +1,2 @@
|
|||
*.svelte
|
||||
*.scss
|
||||
|
|
18
src/frontend/common.scss
Normal file
18
src/frontend/common.scss
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue