From 54c0e58c047990e6b99611b7dcc15abf0d96f1ce Mon Sep 17 00:00:00 2001 From: KarmaKamikaze Date: Thu, 9 Nov 2023 12:14:04 +0100 Subject: [PATCH] Make btn-send css class so we can standardize primary buttons --- ChatRPG/Pages/Campaign.razor | 2 +- ChatRPG/wwwroot/css/site.css | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChatRPG/Pages/Campaign.razor b/ChatRPG/Pages/Campaign.razor index 9b4c65c..cd89b76 100644 --- a/ChatRPG/Pages/Campaign.razor +++ b/ChatRPG/Pages/Campaign.razor @@ -29,7 +29,7 @@
-
diff --git a/ChatRPG/wwwroot/css/site.css b/ChatRPG/wwwroot/css/site.css index a73c874..1023260 100644 --- a/ChatRPG/wwwroot/css/site.css +++ b/ChatRPG/wwwroot/css/site.css @@ -71,6 +71,12 @@ a, .btn-link { background-color: rgb(80, 80, 80); } +.btn-send { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + .user-message-container { background-color: rgb(222, 222, 222); border-radius: 10px; /* Adds rounded corners to the container */