Match sidebar margin and gap to grid on home page
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 14s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-30 02:43:06 +01:00
parent 24fd4dd00c
commit b48a273916

View File

@@ -133,14 +133,13 @@ import Steam from "./Steam.vue";
} }
.sidebar { .sidebar {
margin-top: 1.7rem; margin: 0;
margin-bottom: 1.2rem;
flex: 1; flex: 1;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: 15rem; width: 15rem;
min-height: 0; min-height: 0;
gap: 0.5rem; gap: 5px;
} }
.outerWrap { .outerWrap {
@@ -179,9 +178,7 @@ import Steam from "./Steam.vue";
} }
.sidebar { .sidebar {
margin-top: 0px; width: 95vw;
margin-bottom: 0px;
width: 100%;
flex-direction: column; flex-direction: column;
justify-content: space-around; justify-content: space-around;
} }
@@ -191,6 +188,8 @@ import Steam from "./Steam.vue";
.chat-sidebar { .chat-sidebar {
min-width: 250px; min-width: 250px;
min-height: 250px; min-height: 250px;
max-width: 400px;
max-height: 400px;
height: 15vh; height: 15vh;
} }