mirror of
https://github.com/HSLdevcom/digitransit-ui
synced 2025-07-27 07:04:44 +02:00
34 lines
590 B
SCSS
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;
|
|
}
|
|
}
|