From 58498d47d4277bc0d65c71870458e9aa0966cf28 Mon Sep 17 00:00:00 2001 From: SphericalKat Date: Sun, 15 Aug 2021 04:12:26 +0530 Subject: [PATCH] refactor(ui): make alerts look nicer Signed-off-by: SphericalKat --- assets/css/app.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/assets/css/app.css b/assets/css/app.css index ca2210c..3b9d23b 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -30,4 +30,19 @@ code { white-space: pre; font-size: 14px; font-weight: bold; +} + +.alert { + width: 100%; + text-align: center; +} + +.alert-info { + background-color: #1ed98e; + color: black; +} + +.alert-danger { + background-color: #ff9800; + color: black; } \ No newline at end of file