diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-04-06 19:17:15 +0200 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-04-06 19:17:15 +0200 | 
| commit | 51889773b12c576dc199fc84d0188f822ac7baae (patch) | |
| tree | d79897d463f2517573f6dfce2d1bd27ca476eb28 /src/components/atoms/buttons/buttons.module.scss | |
| parent | 47e12259d512e476326e83929efebf036b57f7c1 (diff) | |
chore: add a HelpButton component
I also added a new shape to the button base.
Diffstat (limited to 'src/components/atoms/buttons/buttons.module.scss')
| -rw-r--r-- | src/components/atoms/buttons/buttons.module.scss | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/src/components/atoms/buttons/buttons.module.scss b/src/components/atoms/buttons/buttons.module.scss index 6784de9..a1c3dba 100644 --- a/src/components/atoms/buttons/buttons.module.scss +++ b/src/components/atoms/buttons/buttons.module.scss @@ -14,11 +14,16 @@      padding: var(--spacing-2xs) var(--spacing-md);    } -  &--square { +  &--square, +  &--circle {      padding: var(--spacing-xs);      aspect-ratio: 1 / 1;    } +  &--circle { +    border-radius: 50%; +  } +    &:disabled {      cursor: wait;    } | 
