update styling

This commit is contained in:
2023-04-30 13:07:43 +02:00
parent fc65393dc7
commit 787b5a4cb8
6 changed files with 75 additions and 30 deletions

54
src/style.scss Normal file
View File

@@ -0,0 +1,54 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
body,
body > div,
html {
height: 100%;
}
body {
overflow-y: auto;
}
.ck-body-wrapper {
height: 0;
}
.ck-content {
line-height: 2rem;
ol,
ul {
@apply ps-8 my-2;
}
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;
}
}