summaryrefslogtreecommitdiff
path: root/templates/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'templates/style.css')
-rw-r--r--templates/style.css12
1 files changed, 10 insertions, 2 deletions
diff --git a/templates/style.css b/templates/style.css
index 4086c46..418dce1 100644
--- a/templates/style.css
+++ b/templates/style.css
@@ -33,13 +33,13 @@ div {
@apply rounded-md;
}
.text-interactive {
- @apply text-secondary-500 hover:text-fuchsia-600;
+ @apply underline text-secondary-500 hover:text-primary-600;
}
.header {
@apply w-full md:w-2/3 bg-primary-300 flex p-2;
}
.about {
- @apply border-4 border-fuchsia-200 border-dashed p-2 justify-items-center;
+ @apply border-4 border-primary-200 border-dashed p-2 justify-items-center bg-white;
}
.about p {
@apply text-2xl;
@@ -54,4 +54,12 @@ div {
font-style: normal;
}
+.CodeMirror {
+ @apply w-full h-auto;
+}
+.CodeMirror-scroll {
+ height: auto;
+ max-height:500px;
+}
+
@tailwind utilities;