From 5bab4502a098eb0e3b5a59b68bc9d8d23529ea55 Mon Sep 17 00:00:00 2001 From: Arne Rief Date: Fri, 10 Feb 2023 21:40:00 +0100 Subject: Desktop version --- sass/components/_button.scss | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 sass/components/_button.scss (limited to 'sass/components/_button.scss') diff --git a/sass/components/_button.scss b/sass/components/_button.scss new file mode 100644 index 0000000..2d5b50c --- /dev/null +++ b/sass/components/_button.scss @@ -0,0 +1,21 @@ +@use "../abstracts/" as *; + +button { + color: $text-dark; + background-color: $text-special-light; + border: none; + border-radius: 10px; + font-style: inherit; + font-weight: bold; + padding: 0.7rem; + text-transform: uppercase; + width: 35%; + + &:hover { + background-color: $text-special-dark; + } + + &:active { + outline: 3px solid $text-dark; + } +} -- cgit v1.2.3