From 1d79f680dfbaf6bad795947fbd843d8ca943c00f Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Mon, 26 May 2025 22:48:11 +0200 Subject: [PATCH] feat: add Channel component --- components/Channel.vue | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/components/Channel.vue b/components/Channel.vue index 0f06528..a0cdc78 100644 --- a/components/Channel.vue +++ b/components/Channel.vue @@ -1,14 +1,19 @@ @@ -16,5 +21,18 @@ const props = defineProps<{ name: string, href: string }>(); .channel-list-link { text-decoration: none; color: inherit; + padding-left: .5dvw; + padding-right: .5dvw; +} + +.channel-list-link-container { + text-align: left; + display: flex; + height: 4dvh; + white-space: nowrap; +} + +.current-channel { + background-color: rgb(70, 70, 70); } \ No newline at end of file