From 524e3b46d37e46502d24cd32ae8f9d2371478fb6 Mon Sep 17 00:00:00 2001 From: Samuel Gunter Date: Sun, 11 Feb 2024 23:29:42 -0600 Subject: [PATCH] chore: removed unused Button.module.scss --- .../common/Button/Button.module.scss | 55 ------------------- 1 file changed, 55 deletions(-) delete mode 100644 src/views/components/common/Button/Button.module.scss diff --git a/src/views/components/common/Button/Button.module.scss b/src/views/components/common/Button/Button.module.scss deleted file mode 100644 index 9460946b..00000000 --- a/src/views/components/common/Button/Button.module.scss +++ /dev/null @@ -1,55 +0,0 @@ -@use 'sass:color'; -@use 'src/views/styles/colors.module.scss'; - -.button { - padding: 0px 16px; - height: 40px; - margin: 10px; - border-radius: 4px; - border: none; - cursor: pointer; - transition: all 0.1s ease-in-out; - font-family: 'Roboto Flex'; - font-size: 18px; - font-style: normal; - font-weight: 500; - line-height: normal; - - display: flex; - align-items: center; - justify-content: center; - - &:hover { - background-color: #fff; - color: #000; - } - - &:active { - transform: scale(0.96); - } - - &.disabled { - cursor: not-allowed !important; - opacity: 0.5 !important; - - &:active { - transform: unset; - } - } - - &.filled { - background-color: var(--color-primary); - color: var(--color-secondary); - } - - &.outline { - background-color: var(--color-secondary); - color: var(--color-primary); - border: 1px solid var(--color-primary); - } - - &.single { - background-color: var(--color-secondary); - color: var(--color-primary); - } -}