diff options
Diffstat (limited to '_scss/components')
-rw-r--r-- | _scss/components/theme/_link.scss | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/_scss/components/theme/_link.scss b/_scss/components/theme/_link.scss new file mode 100644 index 0000000..6dac3e1 --- /dev/null +++ b/_scss/components/theme/_link.scss @@ -0,0 +1,9 @@ +a { + color: $color-primary; + text-decoration: none; + + &:focus, + &:hover { + color: $color-secondary; + } +} |