From eea0d244f0fc9a9483c23ae70317dba16c309111 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 12 Sep 2022 00:58:28 +0200 Subject: [PATCH] Created the Button style --- src/common/components/Button/styles.sass | 15 +++++++++++++++ 1 file changed, 15 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..4367acf --- /dev/null +++ b/src/common/components/Button/styles.sass @@ -0,0 +1,15 @@ +@import "@/common/styles/colors" + +.primary-btn + font-size: 16pt + font-weight: 600 + background-color: $primary + padding: 12px 24px + color: $white + border: none + border-radius: 14px + cursor: pointer + transition: all ease-in 0.1s + +.primary-btn:hover + background-color: $primary-hover \ No newline at end of file