bgenc.net/src/_button.scss

23 lines
474 B
SCSS

@mixin button($color-bg, $color-text) {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 0.25rem;
color: $color-text;
font-weight: 600;
text-decoration: none;
opacity: 0.8;
background-color: $color-bg;
padding: 0.5rem 1rem;
clip-path: var(--clip-path-button);
transition: all var(--animation-speed) var(--animation-type);
user-select: none;
&:hover,
&:focus-visible {
opacity: 1;
text-decoration-color: unset;
}
}