48 lines
570 B
CSS
48 lines
570 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell,
|
|
'Helvetica Neue', sans-serif;
|
|
height: 100%;
|
|
}
|
|
|
|
#__next {
|
|
height: 100%;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
@layer components {
|
|
.alert {
|
|
@apply rounded;
|
|
}
|
|
|
|
.input {
|
|
@apply rounded;
|
|
}
|
|
|
|
.textarea {
|
|
@apply rounded;
|
|
}
|
|
|
|
.select {
|
|
@apply rounded;
|
|
}
|
|
|
|
.btn {
|
|
@apply rounded;
|
|
}
|
|
}
|