17 lines
292 B
CSS
17 lines
292 B
CSS
.sidebar {
|
|
position: fixed;
|
|
top: 15vh;
|
|
right: -60vh;
|
|
width: 50vh;
|
|
height: 80vh;
|
|
background: var(--sidebar-bg);
|
|
border-radius: 10px;
|
|
box-shadow: 0px 5px 10px 0px var(--shadow-color);
|
|
text-align: center;
|
|
z-index: 100;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.sidebar.active {
|
|
right: 5vh;
|
|
} |