File size: 545 Bytes
9cb3002 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | @tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color: #2f241f;
background-color: #f6ddc6;
font-family: 'Trebuchet MS', 'Avenir Next', 'Segoe UI', sans-serif;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
min-width: 320px;
background:
radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 28%),
linear-gradient(180deg, #f9eadb 0%, #f6ddc6 42%, #ecd0bb 100%);
color: #2f241f;
}
button {
font: inherit;
}
#root {
min-height: 100vh;
}
|