From cc64846171fa2d24122bd1727fbc3f94be36c231 Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Sun, 22 Dec 2024 01:19:16 +0000 Subject: [PATCH] add notification badge with count --- assets/styles/app.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/assets/styles/app.css b/assets/styles/app.css index e69de29..a46f8af 100644 --- a/assets/styles/app.css +++ b/assets/styles/app.css @@ -0,0 +1,14 @@ +body { + background-color: pink; +} + +.notification .badge { + position: absolute; + top: -8px; + right: 5px; + padding: 5px 9px; + border-radius: 50%; + background-color: red; + color: white; + font-size: 6pt; +} \ No newline at end of file