main adding in Tailwind, and Tauri

This commit is contained in:
Frank Delaguila
2022-11-02 22:07:27 -06:00
parent ec4f72f0fa
commit 009ba01a74
31 changed files with 5637 additions and 182 deletions

View File

@@ -1,19 +1,6 @@
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;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@media (prefers-color-scheme: dark) {
html {
@@ -21,6 +8,6 @@ a {
}
body {
color: white;
background: black;
background: #0e1111;
}
}