Still working on upgrading to Tailwind CSS v4 an dSkeleton v3.....

This commit is contained in:
Scott Idem
2025-06-18 17:59:48 -04:00
parent db6e9dd019
commit 13912fd145
169 changed files with 2343 additions and 1634 deletions

View File

@@ -1,3 +1,7 @@
@import "tailwindcss/preflight";
@tailwind utilities;
.tiptap :where(p):not(:where([class~='not-prose'], [class~='not-prose'] *)) {
margin-top: 0 !important;
margin-bottom: 0 !important;
@@ -5,7 +9,7 @@
.tiptap code:not(pre code) {
/* Remove the before and after pseudo elements */
@apply rounded border bg-muted/50 p-1 before:content-[''] after:content-[''];
@apply rounded-sm border bg-muted/50 p-1 before:content-[''] after:content-[''];
}
.tiptap blockquote p {
@@ -54,7 +58,7 @@ ul[data-type='taskList'] li[data-checked='true'] div {
}
input[type='checkbox'] {
@apply size-4 cursor-pointer rounded !important;
@apply size-4 cursor-pointer rounded-sm !important;
}
ul[data-type='taskList'] ul[data-type='taskList'] {
@@ -67,7 +71,7 @@ ul[data-type='taskList'] ul[data-type='taskList'] {
}
.color::before {
@apply mb-[0.15rem] mr-[0.1rem] inline-block size-[1rem] rounded border border-muted align-middle;
@apply mb-[0.15rem] mr-[0.1rem] inline-block size-[1rem] rounded-sm border border-muted align-middle;
background-color: var(--color);
content: ' ';
}