From f70d649ae7eeffabc960fa89d34617f072b31f03 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 27 Dec 2022 15:20:18 +0100 Subject: [PATCH] Created the Button style --- admin/src/common/components/Button/styles.sass | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 admin/src/common/components/Button/styles.sass diff --git a/admin/src/common/components/Button/styles.sass b/admin/src/common/components/Button/styles.sass new file mode 100644 index 0000000..e649ac7 --- /dev/null +++ b/admin/src/common/components/Button/styles.sass @@ -0,0 +1,14 @@ +@import "@/common/styles/colors" + +.btn + background-color: $primary + border: none + font-size: 24pt + font-weight: 500 + padding: 15px 30px + border-radius: 15px + color: $white + cursor: pointer + +.btn:hover + background-color: $primary-hover