From 9c88f2e28fa81e447599e7792eef7302a19f1715 Mon Sep 17 00:00:00 2001 From: Kieran Date: Wed, 21 Jun 2023 14:50:16 +0100 Subject: [PATCH] New stream button --- src/icons.svg | 3 +++ src/index.css | 21 ++++++++++++++------- src/pages/layout.css | 2 ++ src/pages/layout.tsx | 4 ++++ src/pages/stream-page.css | 15 +-------------- src/pages/stream-page.tsx | 2 +- 6 files changed, 25 insertions(+), 22 deletions(-) diff --git a/src/icons.svg b/src/icons.svg index 19232df..7d5007e 100644 --- a/src/icons.svg +++ b/src/icons.svg @@ -15,6 +15,9 @@ + + + \ No newline at end of file diff --git a/src/index.css b/src/index.css index 4dab5db..fa42c31 100644 --- a/src/index.css +++ b/src/index.css @@ -44,6 +44,17 @@ a { gap: 24px; } +.btn { + border: none; + outline: none; + cursor: pointer; + font-weight: 700; + font-size: 16px; + line-height: 20px; + padding: 8px 16px; + border-radius: 16px; +} + .btn-border { border: 1px solid transparent; color: inherit; @@ -51,11 +62,7 @@ a { linear-gradient(94.73deg, #2BD9FF 0%, #F838D9 100%) border-box; } -.btn { - cursor: pointer; - font-weight: 700; - font-size: 16px; - line-height: 20px; - padding: 8px 16px; - border-radius: 16px; +.btn-primary { + background: linear-gradient(94.73deg, #2BD9FF 0%, #8C8DED 47.4%, #F838D9 100%); + color: white; } \ No newline at end of file diff --git a/src/pages/layout.css b/src/pages/layout.css index 515bbb3..1de7348 100644 --- a/src/pages/layout.css +++ b/src/pages/layout.css @@ -31,6 +31,8 @@ header>div:nth-child(2) { header>div:nth-child(3) { justify-self: end; + display: flex; + gap: 24px; } header input[type="text"] { diff --git a/src/pages/layout.tsx b/src/pages/layout.tsx index 2aae4eb..659445d 100644 --- a/src/pages/layout.tsx +++ b/src/pages/layout.tsx @@ -14,6 +14,10 @@ export function LayoutPage() {
+