opnform/resources/sass/app.scss

59 lines
734 B
SCSS
Raw Normal View History

2022-09-20 19:59:52 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2022-10-17 11:02:17 +00:00
@import 'fonts';
2022-09-20 19:59:52 +00:00
body.dark * {
@apply border-gray-600
}
2022-10-17 13:42:04 +00:00
* {
2022-10-17 11:02:17 +00:00
font-family: GeneralSans, sans-serif !important;
2022-10-17 13:42:04 +00:00
}
#app {
2022-09-20 19:59:52 +00:00
@apply min-h-screen;
}
@layer base {
:root {
--bg-form-color: #2563eb;
}
2022-09-20 19:59:52 +00:00
p, div {
2022-10-17 15:08:36 +00:00
@apply text-gray-900 dark:text-white;
2022-09-20 19:59:52 +00:00
}
h1, h2, h3, h4, h5, h6 {
@apply text-gray-900 dark:text-white;
}
h1 {
2022-10-17 11:02:17 +00:00
@apply text-3xl sm:text-4xl font-semibold;
2022-09-20 19:59:52 +00:00
}
h2 {
2022-10-17 13:42:04 +00:00
@apply text-3xl font-semibold;
2022-09-20 19:59:52 +00:00
}
a {
@apply text-blue-600 hover:underline;
2022-09-20 19:59:52 +00:00
}
}
.bg-white {
@apply dark:bg-notion-dark;
}
.bg-gray-50 {
@apply dark:bg-notion-dark-light;
}
.field-help {
p {
@apply text-gray-400 dark:text-gray-500;
}
2023-12-09 14:47:03 +00:00
}