This commit is contained in:
ZXY101
2023-08-04 15:10:28 +02:00
parent 3adfa1ccf5
commit 1c3af6df13
6 changed files with 58 additions and 16 deletions

36
src/app.scss Normal file
View File

@@ -0,0 +1,36 @@
@use "variables" as *;
body {
background-color: $background-color;
font-family: $font-family;
color: white;
margin: 0;
padding: 0;
}
button {
border: none;
font-family: $font-family;
background-color: transparent;
color: white;
}
button:hover {
cursor: pointer;
}
a {
text-decoration: inherit;
color: inherit;
cursor: auto;
}
a:visited {
text-decoration: inherit;
color: inherit;
cursor: auto;
}
a:hover {
cursor: pointer;
}