From e67610a9115ad223bfc8cbea50c92be0ea58b331 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 13 Nov 2023 11:47:47 +0100 Subject: [PATCH] Created the Button styles.sass --- src/common/components/Button/styles.sass | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/common/components/Button/styles.sass diff --git a/src/common/components/Button/styles.sass b/src/common/components/Button/styles.sass new file mode 100644 index 0000000..c001e28 --- /dev/null +++ b/src/common/components/Button/styles.sass @@ -0,0 +1,18 @@ +@import "@/common/styles/colors" + +.btn + background-color: $primary + border: none + color: $text + padding: 0.5rem 1rem + border-radius: 0.6rem + font-size: 14pt + font-weight: 600 + transition: all 0.2s + cursor: pointer + +.btn:hover + filter: brightness(0.9) + +.btn:active + transform: rotateY(20deg) \ No newline at end of file