Files
blog/sass/_buttons.scss
daudix f8efb69e6c feat: Make stuff look good on as many browser versions as possible
Rejoice iPhone users, you'll have pretty CRT now as well!
2024-01-23 09:47:59 +03:00

37 lines
692 B
SCSS

.dialog-buttons {
display: flex;
flex-direction: row;
align-items: baseline;
justify-content: space-between;
margin-top: 6rem;
}
.inline-button {
background-color: var(--fg-muted-1);
border-radius: var(--rounded-corner);
color: var(--fg-color);
display: inline-block;
font-size: 0.9rem;
padding: 0.5rem 1rem;
text-decoration: none;
transition: var(--transition);
&:hover {
background-color: var(--fg-muted-2);
text-decoration: none;
}
&:active {
transform: scale(var(--active));
}
&.colored {
color: var(--primary-color);
background-color: transparent;
&:hover {
background-color: var(--primary-color-alpha);
}
}
}