Iceshrimp.NET/Iceshrimp.Frontend/Layout/Sidebar.razor.css
2024-06-19 01:56:49 +02:00

37 lines
No EOL
662 B
CSS

.sidebar {
display: flex;
flex-direction: column;
height: 100vh;
max-width: 15rem;
min-width: 15rem;
flex-grow: 1;
background-color: var(--foreground-color);
}
.header {
height: 5rem;
}
.sidebar-btn {
display: flex;
height: 2.5rem;
align-items: center;
justify-content: start;
border-radius: 1.25rem;
padding-inline: 0.5rem;
margin-bottom: 0.5rem;
margin-inline: 1rem;
color: black;
font-size: 0.9em;
background: var(--accent-color)
}
.btn:hover {
background-color: var(--hover-color);
}
.icon {
display: flex;
margin: 0.5rem;
align-items: center;
color: black;
}