mirror of
https://github.com/taigrr/wails.git
synced 2026-04-11 01:21:32 -07:00
25 lines
479 B
CSS
25 lines
479 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
|
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
background-color: #282c34;
|
|
}
|
|
|
|
p {
|
|
color: white
|
|
}
|
|
|
|
h1 {
|
|
color: white
|
|
}
|
|
|
|
button {
|
|
background-color: white;
|
|
color: black;
|
|
}
|