From 659e45544b957f7e576fff97c62ec3523cb902d2 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 14 Nov 2023 09:45:47 +0100 Subject: [PATCH] Created the Channels styles.sass --- src/states/Manage/pages/Channels/styles.sass | 31 ++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/states/Manage/pages/Channels/styles.sass b/src/states/Manage/pages/Channels/styles.sass index e69de29..03290ae 100644 --- a/src/states/Manage/pages/Channels/styles.sass +++ b/src/states/Manage/pages/Channels/styles.sass @@ -0,0 +1,31 @@ +@import "@/common/styles/colors" + +.channel-page + display: flex + flex-direction: column + gap: 1rem + margin: 3rem 4rem + +.channel-page .none-found + display: flex + flex-direction: column + align-items: center + justify-content: center + + img + width: 10rem + height: 10rem + + h2 + margin: 0.3rem + + p + color: $gray + text-align: center + + code + color: $text + background-color: $black + padding: 0.5rem + border-radius: 0.5rem + cursor: pointer