38 lines
529 B
CSS
38 lines
529 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-brand-brown: #2C1E16;
|
|
--color-brand-beige: #F5F4F0;
|
|
|
|
--font-sans: var(--font-inter);
|
|
--font-serif: var(--font-playfair);
|
|
}
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #171717;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background);
|
|
color: var(--foreground);
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
width: 0px;
|
|
background: transparent;
|
|
}
|
|
|
|
* {
|
|
scrollbar-width: none;
|
|
-ms-overflow-style: none;
|
|
} |