jitsi-roomsv2/frontend/src/components/sidebar/Sidebar.css
qvalentin f3e6699ca5
All checks were successful
continuous-integration/drone/push Build is passing
resizeable sidebar and meeting names on startpage
2023-07-04 20:05:58 +02:00

41 lines
580 B
CSS

.sidebar {
resize: horizontal;
display: flex;
flex-direction: column;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-left: 5px;
padding-right: 5px;
background-color: #121115;
}
.sidebar h3 {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.sidebar-footer {
margin-top: auto;
}
.sidebar-small {
min-width: 60px;
max-width: 60px;
}
.sidebar-full {
width: 220px;
}
.sidebar-hidden {
width: 0;
padding: 0;
}
.sidebar-hidden > .sidebar-footer > .sidebar-toggle {
position: absolute;
bottom: 0;
}