mocksaml/styles/globals.css

49 lines
596 B
CSS
Raw Normal View History

2022-01-13 17:07:44 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2022-01-08 15:11:13 +00:00
html,
body {
padding: 0;
margin: 0;
2022-02-24 18:01:35 +00:00
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell,
'Helvetica Neue', sans-serif;
2022-02-18 12:52:24 +00:00
height: 100%;
}
2022-02-28 05:52:49 +00:00
2022-02-18 12:52:24 +00:00
#__next {
height: 100%;
2022-01-08 15:11:13 +00:00
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
2022-02-18 18:12:45 +00:00
@layer components {
2022-07-26 21:28:46 +00:00
.alert {
@apply rounded;
}
2022-07-26 21:28:46 +00:00
.input {
@apply rounded;
2022-02-18 18:12:45 +00:00
}
2022-02-24 18:11:56 +00:00
2022-07-26 21:28:46 +00:00
.textarea {
@apply rounded;
}
.select {
2022-07-26 21:28:46 +00:00
@apply rounded;
}
.btn {
@apply rounded;
text-transform: none;
2022-02-18 18:12:45 +00:00
}
}