From 6ff3c172255f598b8230b6a8c72671f07b328098 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 24 Apr 2018 15:30:31 +0400 Subject: [PATCH] Decor link Signed-off-by: Valentin Popov --- _scss/components/theme/_link.scss | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 _scss/components/theme/_link.scss 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; + } +}