16 lines
298 B
CSS
16 lines
298 B
CSS
#sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 128px;
|
|
height: 100vh;
|
|
}
|
|
|
|
.sidebar-item {
|
|
padding: 16px 16px; /* Padding to give button-like space */
|
|
cursor: pointer; /* Changing the cursor on hover to indicate clickability */
|
|
}
|
|
|
|
.sidebar-item:hover {
|
|
text-shadow: 0 0 8px;
|
|
}
|