1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 20:59:30 +00:00

Changed default link styling

This commit is contained in:
2022-01-31 15:08:30 +00:00
parent 5528445731
commit cc9a1f595f
2 changed files with 12 additions and 0 deletions

View File

@@ -2,3 +2,12 @@ body {
font-family: $text-font-stack;
color: $text-colour;
}
a {
color: $primary-colour;
text-decoration: none;
@include on-event() {
text-decoration: underline;
}
}

View File

@@ -8,6 +8,9 @@
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
transition: background-color .25s;
@include on-event() {
text-decoration: none;
}
}
@each $name, $colour in $button-colours {