18 lines
342 B
CSS
18 lines
342 B
CSS
|
|
@import "tailwindcss/base.css";
|
||
|
|
@import "tailwindcss/components.css";
|
||
|
|
@import "tailwindcss/utilities.css";
|
||
|
|
|
||
|
|
html {
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
body {
|
||
|
|
background-color: rgb(22, 22, 22);
|
||
|
|
min-height: 100vh;
|
||
|
|
overflow-x: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--toastBackground: rgba(41, 37, 36, 0.8);
|
||
|
|
--toastProgressBackground: transparent;
|
||
|
|
--toastFont: 'Inter';
|
||
|
|
}
|