mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-23 00:27:40 +00:00
Co-authored-by: Jip Frijlink <JipFr@users.noreply.github.com> Co-authored-by: James Hawkins <jhawki2005@gmail.com>
38 lines
536 B
CSS
38 lines
536 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body {
|
|
@apply bg-denim-100 text-denim-700 font-open-sans overflow-x-hidden;
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
}
|
|
|
|
html[data-full], html[data-full] body {
|
|
overscroll-behavior-y: none;
|
|
}
|
|
|
|
#root {
|
|
padding: 0.05px;
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
width: 100%;
|
|
}
|
|
|
|
body[data-no-select] {
|
|
user-select: none;
|
|
}
|
|
|
|
.roll {
|
|
animation: roll 1s;
|
|
}
|
|
|
|
@keyframes roll {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|