Re-componentize EventBlock, some misc change, update UX entirely.

This commit is contained in:
2026-01-11 21:41:19 -05:00
parent 415495e215
commit 9fc25f3072
10 changed files with 328 additions and 248 deletions

View File

@@ -27,6 +27,22 @@
/* Black variants for UI elements */
--color-ecsess-black: #1f1f1f;
--color-ecsess-black-hover: #161917;
--animate-wiggle: wiggle 1s ease-in-out;
@keyframes wiggle {
0% {
transform: rotateY(0);
}
33% {
transform: rotateY(5deg);
}
66% {
transform: rotateY(-5deg);
}
100% {
transform: rotateY(0);
}
}
}
* {
@@ -113,7 +129,7 @@ h2 {
ol,
ul {
@apply my-2 list-outside list-disc ps-[1.625rem];
@apply my-2 list-outside list-disc ps-6.5;
}
li {
@@ -145,7 +161,7 @@ h2 {
}
dd {
@apply mt-2 ps-[1.625rem];
@apply mt-2 ps-6.5;
}
hr {