diff --git a/apps/static/css/home/index.css b/apps/static/css/home/index.css
index ebd18cf..186bb3e 100644
--- a/apps/static/css/home/index.css
+++ b/apps/static/css/home/index.css
@@ -138,6 +138,23 @@ td > .btn-link {
color: var(--bs-text-body);
}
+/* Yellow Dot Indicator for the server sidebar */
+.dot-container {
+ width: .75rem;
+ height: .75rem;
+
+ display: flex;
+ position: absolute;
+ top: 0;
+ right: 0;
+}
+
+@media (max-width: 992px) {
+ .dot-container {
+ transform: translate(25%, -25%);
+ }
+}
+
.dot-icon {
height: .75rem;
width: .75rem;
diff --git a/apps/templates/home/index.html b/apps/templates/home/index.html
index 5adf343..44b8a0f 100644
--- a/apps/templates/home/index.html
+++ b/apps/templates/home/index.html
@@ -134,8 +134,8 @@