body { display: flex; flex-direction: row; } /* sidebar */ /*
*/ .sidebar { background-color: var(--background-secondary); width: 220px; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: space-between; } .sidebar .actions { display: flex; flex-direction: column; align-items: center; width: 100%; } .sidebar .actions .action { display: flex; align-items: center; padding: 1rem; height: 20px; width: 100%; border-radius: 4px; transition: background-color 0.2s ease; } .sidebar .actions .action svg { width: 25px; height: 25px; } .sidebar .actions .action:hover { background-color: var(--background); } .sidebar .user-area { display: flex; flex-direction: column; align-items: center; width: 100%; border-top: 1px solid var(--border); background-color: rgba(0 0 0 / 10%); } .sidebar .user-area img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; } .sidebar .user-area .username { margin-top: 1rem; font-weight: bold; color: var(--text); }