diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-15 14:38:54 +0200 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-15 14:38:54 +0200 | 
| commit | b836f0a9f8b783e3328983ad087aa2b7b297b43a (patch) | |
| tree | b2ef8841a3fc94a1fe400e53597f9338e5391858 /src/components/atoms/buttons/buttons.module.scss | |
| parent | 0ff94252e27a80221e221c6159761f46aa111ac3 (diff) | |
chore: add a CommentForm component
Diffstat (limited to 'src/components/atoms/buttons/buttons.module.scss')
| -rw-r--r-- | src/components/atoms/buttons/buttons.module.scss | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/src/components/atoms/buttons/buttons.module.scss b/src/components/atoms/buttons/buttons.module.scss index 87c92db..8e3e196 100644 --- a/src/components/atoms/buttons/buttons.module.scss +++ b/src/components/atoms/buttons/buttons.module.scss @@ -10,6 +10,10 @@    font-weight: 600;    transition: all 0.3s ease-in-out 0s; +  &--initial { +    border-radius: 0; +  } +    &--rectangle {      padding: var(--spacing-2xs) var(--spacing-md);    } @@ -107,7 +111,7 @@              fun.convert-px(-4) var(--color-shadow-light),            fun.convert-px(7) fun.convert-px(10) fun.convert-px(12)              fun.convert-px(-3) var(--color-shadow-light); -        transform: scale(1.1); +        transform: scale(var(--scale-up, 1.1));        }        &:focus { @@ -119,7 +123,7 @@          box-shadow: 0 0 0 0 var(--color-shadow);          color: var(--color-primary-dark);          text-decoration: underline transparent 0; -        transform: scale(0.94); +        transform: scale(var(--scale-down, 0.94));        }      }    } | 
