mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 14:41:41 +03:00
7207d98c7a
Fixes #252 In order to remove duplication for the TopNavbar and the TagsSidebar on these pages we need a base Layout component. This PR eliminates the duplication we were seeing before. Co-authored-by: Michael Curry <michael.curry@thebeansgroup.com>
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;
|
|
}
|