File size: 846 Bytes
f909d7c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
import { createGlobalStyle } from "styled-components";
const GlobalStyle = createGlobalStyle`
html, body {
background: rgb(246,249,253);
background: radial-gradient(circle, rgb(245 245 245) 33%, rgb(252 252 255) 100%);
-webkit-font-smoothing: subpixel-antialiased !important;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
scroll-behavior: smooth !important;
-webkit-tap-highlight-color: transparent;
-webkit-font-smoothing: never;
}
.hide {
display: none;
}
svg {
vertical-align: text-top;
}
a {
color: unset;
text-decoration: none;
}
button {
border: none;
outline: none;
background: transparent;
width: fit-content;
margin: 0;
padding: 0;
cursor: pointer;
}
`;
export default GlobalStyle;
|