From 71777a2030921eeb933df9f38c343106b7b56da9 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 18 Nov 2023 19:32:24 +0100 Subject: [PATCH] Created the Button styles.sass --- .../src/common/components/Button/styles.sass | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 client/src/common/components/Button/styles.sass diff --git a/client/src/common/components/Button/styles.sass b/client/src/common/components/Button/styles.sass new file mode 100644 index 0000000..bf7b8fa --- /dev/null +++ b/client/src/common/components/Button/styles.sass @@ -0,0 +1,19 @@ +@import "@styles/colors" + +.btn + display: flex + align-items: center + gap: 1rem + color: $text + padding: 0.7rem 1.5rem + border-radius: 0.5rem + font-size: 1.2rem + font-weight: 600 + cursor: pointer + transition: 0.2s + + &:hover + transform: scale(1.03) rotate(2deg) + + &:active + transform: scale(0.95) rotate(-2deg) \ No newline at end of file