From 3915c0ae6f416c79e6c8ce779734ac527c5016a0 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 8 May 2023 22:04:37 +0200 Subject: [PATCH] Created the SidebarHeader styles.sass --- .../components/SidebarHeader/styles.sass | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 client/src/common/components/Sidebar/components/SidebarHeader/styles.sass diff --git a/client/src/common/components/Sidebar/components/SidebarHeader/styles.sass b/client/src/common/components/Sidebar/components/SidebarHeader/styles.sass new file mode 100644 index 0000000..37648d8 --- /dev/null +++ b/client/src/common/components/Sidebar/components/SidebarHeader/styles.sass @@ -0,0 +1,39 @@ +@import "@/common/styles/colors" + +.sidebar-header + display: flex + align-items: center + gap: 0.8rem + margin-left: 1rem + margin-top: 1rem + +.sidebar-header img + width: 3rem + height: 3rem + border-radius: 5rem + +.title-header + display: flex + align-items: center + gap: 0.1rem + color: $primary + +.title-header p + margin: 0 + font-size: 11pt + font-weight: 700 + +.title-header svg + width: 0.8rem + height: 0.8rem + +.title-subheader p + margin: 0 + font-size: 16pt + font-weight: 800 + color: $white + +.title-subheader span + font-size: 11pt + font-weight: 500 + color: $gray \ No newline at end of file