From bc2d44f23b998fb44ddb12d9e422f211d197d610 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 30 May 2023 21:31:48 +0200 Subject: [PATCH] Created the Button index styles.sass --- .../src/common/components/Button/styles.sass | 20 +++++++++++++++++++ 1 file changed, 20 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..b3cc63a --- /dev/null +++ b/client/src/common/components/Button/styles.sass @@ -0,0 +1,20 @@ +@import "@/common/styles/colors" + +.btn + display: flex + align-items: center + color: $darker-white + background-color: transparent + border-radius: 1rem + padding: 0.7rem 1rem + user-select: none + gap: 0.5rem + border: 2px solid $primary + transition: filter 0.2s + will-change: filter + font-size: 16pt + font-weight: 700 + cursor: pointer + + &:hover + filter: brightness(1.2) \ No newline at end of file