Files
Polaris/static/assets/css/sidebar.css
T
2023-05-03 21:05:51 -06:00

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;
}