mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
feat: react front init
This commit is contained in:
parent
130123b055
commit
fcd281d1d6
18 changed files with 6594 additions and 0 deletions
27
front/styles/globals.css
Normal file
27
front/styles/globals.css
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
|
||||
|
||||
html,
|
||||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
color-scheme: dark;
|
||||
}
|
||||
body {
|
||||
color: black;
|
||||
background: #FBFBFB;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue