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