Files
remark42/frontend/app/components/button/button.css
T
2021-03-04 12:02:46 -06:00

22 lines
319 B
CSS

.button {
background: none;
border: 0;
padding: 0;
margin: 0;
border-radius: 4px;
font-family: inherit;
font-size: inherit;
cursor: pointer;
white-space: nowrap;
&:focus {
box-shadow: 0 0 0 2px var(--color47);
outline: none;
}
&:disabled {
opacity: 0.6;
cursor: default;
}
}