small medium screen adjustments

This commit is contained in:
Ryan
2025-03-09 23:07:40 -04:00
committed by GitHub
parent bdb12d66d7
commit f59ad8077f
2 changed files with 167 additions and 150 deletions

View File

@@ -415,6 +415,20 @@ label {
margin-top: 0px !important;
}
.folder-actions {
display: flex;
flex-wrap: nowrap; /* Prevent wrapping */
align-items: center;
white-space: nowrap; /* Extra safeguard */
}
/* Optional: On medium screens, if needed, ensure the container doesn't force wrapping */
@media (min-width: 600px) and (max-width: 992px) {
.folder-actions {
white-space: nowrap;
}
}
/* Row Selected Highlight */
.row-selected {
background-color: #f2f2f2 !important;