prettier plus updates to the header entry. Stream gets iframe page instead of redirect

This commit is contained in:
2026-05-09 21:22:59 +02:00
parent 8f5714ac28
commit d98b18aeb9
18 changed files with 513 additions and 462 deletions
+13 -3
View File
@@ -2,13 +2,23 @@
@import "@catppuccin/tailwindcss/macchiato.css";
.ui-btn {
@apply text-ctp-text border border-ctp-text rounded px-3 py-1 cursor-pointer transition-colors;
@apply text-ctp-text border border-ctp-text rounded px-3 py-1 cursor-pointer transition-colors;
}
.ui-btn:hover {
@apply bg-ctp-surface0 text-ctp-green border-ctp-green duration-300 ease-in-out;
@apply bg-ctp-surface0 text-ctp-green border-ctp-green duration-300 ease-in-out;
}
.ui-btn-active {
@apply bg-ctp-surface0 text-ctp-green border-ctp-green;
@apply bg-ctp-surface0 text-ctp-green border-ctp-green;
}
.stream-frame {
width: 96vw;
margin: 0 auto;
@apply aspect-video rounded-2xl overflow-hidden border border-ctp-lavender-800 bg-ctp-mantle shadow-lg;
}
.stream-frame iframe {
@apply w-full h-full border-0;
}