28 lines
431 B
CSS
28 lines
431 B
CSS
@tailwind base;
|
||
@tailwind components;
|
||
@tailwind utilities;
|
||
|
||
/* Сброс и базовые стили под светлую корпоративную тему */
|
||
* {
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
margin: 0;
|
||
background: #fcfcfd;
|
||
color: #171a1c;
|
||
font-family:
|
||
-apple-system,
|
||
Segoe UI,
|
||
Roboto,
|
||
Arial,
|
||
sans-serif;
|
||
}
|
||
a {
|
||
color: inherit;
|
||
text-decoration: none;
|
||
}
|
||
button {
|
||
font-family: inherit;
|
||
}
|