mourningdove/htdocs/scss/mixins/_bare-button.scss

11 lines
306 B
SCSS
Raw Permalink Normal View History

2026-05-24 01:03:05 +00:00
// for when we want to use the button element to be semantically accurate / accessible
// but we don't want it to look visually like a button
%bare-button {
text-align: left;
background-color: transparent;
border: none;
box-shadow: none;
padding: 0;
margin: 0;
color: inherit;
}