decisions

This commit is contained in:
Julian Krauser 2024-10-08 10:43:16 +02:00
parent 562f6ab1f2
commit 0d559c9365
13 changed files with 78 additions and 11 deletions

View file

@ -56,8 +56,8 @@ body {
@apply w-full h-full overflow-hidden flex flex-col;
}
button:not([headlessui]):not([id*="headlessui"]):not([class*="headlessui"]),
a[button]:not([headlessui]):not([id*="headlessui"]):not([class*="headlessui"]) {
button:not([headlessui]):not([id*="headlessui"]):not([class*="headlessui"]):not([class*="ql"] *),
a[button] {
@apply relative box-border h-10 w-full flex justify-center py-2 px-4 text-sm font-medium rounded-md focus:outline-none focus:ring-0;
}
@ -91,3 +91,30 @@ input[disabled],
textarea[disabled] {
@apply opacity-75 pointer-events-none;
}
details {
user-select: none;
& summary svg {
transform: rotate(90deg);
}
}
details[open] {
& summary svg {
transform: rotate(-90deg);
}
}
details[open] summary ~ * {
animation: ease-opacity-t-b 0.5s ease;
}
summary {
cursor: pointer;
}
summary > svg {
transition: all 0.3s;
}
summary::-webkit-details-marker {
display: none;
}