mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
20 lines
320 B
SCSS
20 lines
320 B
SCSS
@use "../Shared/Globals";
|
|
|
|
nav {
|
|
font-weight: 100;
|
|
font-size: 1.5em;
|
|
line-height: 2rem;
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
display: block;
|
|
padding: 0.5rem 2rem;
|
|
text-decoration: none;
|
|
transition: background-color .25s ease-in-out;
|
|
|
|
&:hover {
|
|
background-color: Globals.$accent-color;
|
|
}
|
|
} |