Files
timelapse-frontend/css/style.css
2025-01-09 10:12:17 +01:00

43 lines
577 B
CSS

main {
flex: 1 0 auto;
}
footer {
text-align: center;
position: fixed;
bottom: 0;
}
.row {
margin-top: 20px;
display: flex;
justify-content: space-between;
}
.col-md-6 {
flex: 0 0 50%;
max-width: 50%;
}
.col-md-12 {
flex: 0 0 100%;
max-width: 100%;
}
.hiddenTable {
max-height: 400px; /* Adjust this value as needed */
overflow-y: hidden;
}
.full-view {
max-height: none;
overflow-y: visible;
}
.sticky-header thead{
position: sticky;
top: 0;
z-index: 1;
}
#addVideoHandler{
display: flex;
}