digitransit-ui/sass/base/_button.scss
2024-01-15 15:22:12 +02:00

34 lines
590 B
SCSS

button {
border: 0;
margin: 0;
padding: 0;
font-size: 100%;
background: none;
border-style: none;
border-width: 0;
cursor: pointer;
font-family: $button-font-family;
position: relative;
background-color: transparent;
transition: none;
display: inline-block;
text-decoration: none;
font-weight: inherit;
appearance: none;
color: inherit;
&:focus {
background-color: transparent;
color: inherit;
}
&:active {
background-color: transparent;
color: inherit;
}
&:hover {
background-color: transparent;
color: inherit;
}
}