From 62cef41f4300aad220f74a659004c2ea61bfa197 Mon Sep 17 00:00:00 2001 From: carsenk Date: Wed, 9 Jun 2021 00:21:39 -0600 Subject: [PATCH 1/2] Add Create Post Button to Left Bar --- src/app/left-bar/left-bar.component.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/app/left-bar/left-bar.component.html b/src/app/left-bar/left-bar.component.html index ae27e461e..9f46d361b 100644 --- a/src/app/left-bar/left-bar.component.html +++ b/src/app/left-bar/left-bar.component.html @@ -91,6 +91,15 @@ Help + +
+ Create Post +
+
+
Date: Sat, 12 Jun 2021 14:12:13 -0600 Subject: [PATCH 2/2] Update Create Post Button Styling across all themes --- src/app/left-bar/left-bar.component.html | 2 +- src/styles.scss | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/left-bar/left-bar.component.html b/src/app/left-bar/left-bar.component.html index 9f46d361b..fbaed70c0 100644 --- a/src/app/left-bar/left-bar.component.html +++ b/src/app/left-bar/left-bar.component.html @@ -95,7 +95,7 @@ [routerLink]="'/' + globalVars.RouteNames.CREATE_POST" queryParamsHandling="merge" > -
+
Create Post
diff --git a/src/styles.scss b/src/styles.scss index e8cdadb28..2035974d4 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -2079,4 +2079,9 @@ input { padding: 1rem 1rem; border-top-left-radius: calc(.3rem - 1px); border-top-right-radius: calc(.3rem - 1px); +} + +.btn-create { + background-color: var(--secondary); + color: var(--text); } \ No newline at end of file