Fix filled button styles

This commit is contained in:
jeffvli 2023-03-28 16:13:18 -07:00
parent 219a9ed613
commit ececc394e2
3 changed files with 13 additions and 13 deletions

View file

@ -6,21 +6,21 @@ const MotionButton = styled(UnstyledButton)`
display: flex;
align-items: center;
justify-content: center;
background-color: var(--btn-primary-bg);
background-color: var(--btn-filled-bg);
border: none;
border-radius: 50%;
opacity: 0.8;
svg {
fill: var(--btn-primary-fg);
fill: var(--btn-filled-fg);
}
&:hover {
background-color: var(--btn-primary-bg-hover);
background-color: var(--btn-filled-bg-hover);
transform: scale(1.1);
svg {
fill: var(--btn-primary-fg-hover);
fill: var(--btn-filled-fg-hover);
}
}