mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 22:51:40 +03:00
19 lines
323 B
CSS
19 lines
323 B
CSS
|
* {
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
button.plain {
|
||
|
border: none;
|
||
|
outline: none;
|
||
|
padding: 0;
|
||
|
color: inherit;
|
||
|
background: none;
|
||
|
font: inherit;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
button.plain:hover {
|
||
|
cursor: pointer;
|
||
|
}
|