server/assets/css/app.css

54 lines
964 B
CSS

@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
/* This file is for your main application CSS */
*,
*:before,
*:after {
box-sizing: inherit;
}
html {
height: 100%;
box-sizing: border-box;
touch-action: manipulation;
font-feature-settings:
"case" 1,
"rlig" 1,
"calt" 0;
}
html,
body {
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Helvetica Neue",
"Helvetica", sans-serif;
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
@apply bg-white text-white antialiased;
}
body {
position: relative;
min-height: 100%;
margin: 0;
}
a {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.height-screen-helper {
height: calc(100vh - 80px);
}