server/assets/css/app.css

54 lines
964 B
CSS
Raw Normal View History

2023-11-28 17:50:13 +00:00
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
/* This file is for your main application CSS */
2023-12-02 14:21:05 +00:00
*,
*:before,
*:after {
box-sizing: inherit;
}
html {
height: 100%;
box-sizing: border-box;
touch-action: manipulation;
font-feature-settings:
"case" 1,
"rlig" 1,
"calt" 0;
2023-12-02 14:21:05 +00:00
}
html,
body {
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Helvetica Neue",
"Helvetica", sans-serif;
2023-12-02 14:21:05 +00:00
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
@apply bg-white text-white antialiased;
2023-12-02 14:21:05 +00:00
}
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);
}