updated new item creation

This commit is contained in:
2024-09-23 20:17:08 -06:00
parent 060af501f2
commit 2d6a8d7c9f
4 changed files with 46 additions and 90 deletions

View File

@@ -21,7 +21,9 @@
background-color: #020617 !important;
/* background-color: #18181b !important; */
}
.monaco-editor { position: absolute !important; }
.monaco-editor {
position: absolute !important;
}
.monaco-editor .mtk1 {
@apply text-slate-300;
@@ -69,14 +71,14 @@ table {
}
thead {
@apply text-lg ;
@apply text-lg;
}
th, td {
th,
td {
@apply px-2 py-1 border border-gray-700;
}
hr {
@apply border-t border-gray-500 my-4;
}
@@ -93,12 +95,14 @@ p {
@apply mb-3;
}
button,
.btn {
@apply bg-blue-900 hover:bg-blue-700 text-blue-50;
button, .btn {
@apply font-bold py-1 px-3 rounded transition-all duration-200;
}
button:not(.unstyled), .btn:not(.unstyled) {
@apply bg-blue-900 hover:bg-blue-700 text-blue-50;
}
.btn-danger {
@apply bg-red-800 hover:bg-red-900 text-red-100;
}
@@ -114,22 +118,20 @@ select {
@apply bg-slate-800;
}
.collapsible {
max-height: 0;
overflow: hidden;
transition: max-height .5s ease-out;
transition: max-height 0.5s ease-out;
}
.collapsible.expand {
max-height: 100vh;
}
.markdownQuizAnswerPreview p:last-child {
@apply p-0 m-0 ;
@apply p-0 m-0;
}
.markdownPreview a {
@apply text-blue-500 hover:text-blue-600 font-bold underline;
}
}