65 lines
829 B
SCSS
65 lines
829 B
SCSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
@import '@fontsource/source-sans-pro';
|
|
@import '@fontsource/source-sans-pro/300';
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
font-family: 'Source Sans Pro', sans-serif;
|
|
overflow-y: scroll;
|
|
@apply flex flex-col bg-gray-100;
|
|
#app {
|
|
@apply flex flex-grow flex-col;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
animation-duration: 0s;
|
|
}
|
|
|
|
.ck-body-wrapper {
|
|
height: 0;
|
|
}
|
|
|
|
.ck-content {
|
|
line-height: 2rem;
|
|
ol,
|
|
ul {
|
|
@apply my-2 ps-8;
|
|
}
|
|
ol {
|
|
@apply list-decimal;
|
|
}
|
|
ul {
|
|
@apply list-disc;
|
|
}
|
|
p {
|
|
@apply mb-2;
|
|
margin-top: 0 !important;
|
|
// margin-block: 0;
|
|
}
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4 {
|
|
@apply font-semibold;
|
|
}
|
|
h1 {
|
|
@apply text-3xl;
|
|
}
|
|
h2 {
|
|
@apply text-2xl;
|
|
}
|
|
h3 {
|
|
@apply text-xl;
|
|
}
|
|
h4 {
|
|
@apply text-lg;
|
|
}
|
|
}
|