styled components; navbar section

This commit is contained in:
2023-08-31 15:45:24 +02:00
parent a342e6eeec
commit dffa5fdda9
15 changed files with 1306 additions and 166 deletions
+31
View File
@@ -0,0 +1,31 @@
import { createGlobalStyle } from 'styled-components';
export const GlobalStyles = createGlobalStyle`
:root {
font-family: Inter, system-ui, Arial, sans-serif;
font-weight: 400;
font-size: 16px;
color-scheme: light dark;
color: white;
background-color: #242424;
font-synthesis: none;
text-rendering: optimizeLegibility;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
width: 100%;
}
a {
color: white;
text-decoration: none;
}
`;