opnform-host-nginx/client/scss/app.scss

53 lines
640 B
SCSS
Raw Normal View History

2023-12-09 15:47:03 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@import 'fonts';
body.dark * {
@apply border-gray-600
}
* {
font-family: GeneralSans, sans-serif !important;
}
#app {
@apply min-h-screen;
}
@layer base {
:root {
--bg-form-color: #2563eb;
}
h1 {
@apply text-3xl sm:text-4xl font-semibold;
}
h2 {
@apply text-3xl font-semibold;
}
}
.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;
}
2024-03-12 16:13:00 +01:00
}
.public-page {
.fb-feedback-widget-feedback-button-container {
display: none;
}
}