2022-02-10 22:13:56 +01:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2022-02-10 23:45:17 +01:00
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
2023-01-23 23:01:08 +01:00
|
|
|
@apply bg-denim-100 text-denim-700 font-open-sans overflow-x-hidden;
|
|
|
|
min-height: 100vh;
|
|
|
|
min-height: 100dvh;
|
2022-02-10 23:45:17 +01:00
|
|
|
}
|
2022-02-16 22:38:37 +01:00
|
|
|
|
2023-01-23 23:51:40 +01:00
|
|
|
html[data-full], html[data-full] body {
|
|
|
|
overscroll-behavior-y: none;
|
|
|
|
}
|
|
|
|
|
2022-02-16 22:38:37 +01:00
|
|
|
#root {
|
2023-01-07 21:36:18 +01:00
|
|
|
padding: 0.05px;
|
2022-02-16 22:38:37 +01:00
|
|
|
min-height: 100vh;
|
2023-01-23 23:01:08 +01:00
|
|
|
min-height: 100dvh;
|
2022-02-16 22:38:37 +01:00
|
|
|
width: 100%;
|
|
|
|
}
|
2023-01-08 22:29:38 +01:00
|
|
|
|
|
|
|
body[data-no-select] {
|
|
|
|
user-select: none;
|
|
|
|
}
|
2023-01-24 18:12:37 +01:00
|
|
|
|
|
|
|
.roll {
|
|
|
|
animation: roll 1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes roll {
|
|
|
|
from {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
2023-02-07 22:34:20 +01:00
|
|
|
|
|
|
|
.line-clamp {
|
|
|
|
overflow: hidden;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 1;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|