Add initial setup files for Tailwind CSS and PostCSS, including global styles and TypeScript configuration
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
:root {
|
||||
color-scheme: light;
|
||||
background: #f5f7f4;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
min-height: 100%;
|
||||
margin: 0;
|
||||
background:
|
||||
linear-gradient(135deg, rgba(47, 125, 99, 0.08), transparent 34%),
|
||||
linear-gradient(315deg, rgba(216, 100, 74, 0.08), transparent 30%),
|
||||
#f5f7f4;
|
||||
color: #17211f;
|
||||
font-family:
|
||||
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
|
||||
sans-serif;
|
||||
}
|
||||
|
||||
button,
|
||||
input,
|
||||
select {
|
||||
font: inherit;
|
||||
}
|
||||
Reference in New Issue
Block a user