All checks were successful
Build Docker Image / Build Docker Image (push) Successful in 6m15s
33 lines
673 B
CSS
33 lines
673 B
CSS
.sidebar-container {
|
|
width: 250px;
|
|
transition: width 0.3s ease-in-out;
|
|
flex-shrink: 0; /* Prevent the sidebar from shrinking in the flex container */
|
|
}
|
|
|
|
.sidebar-container.is-collapsed {
|
|
width: 70px;
|
|
}
|
|
|
|
.sidebar-container.is-mobile {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100vh;
|
|
width: 250px; /* Width when shown on mobile */
|
|
z-index: 40;
|
|
transform: translateX(-100%);
|
|
transition: transform 0.3s ease-in-out;
|
|
}
|
|
|
|
.sidebar-container.is-mobile.is-open {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
@keyframes spin-slow {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
.animate-spin-slow {
|
|
animation: spin-slow 8s linear infinite;
|
|
}
|