Make record sidebar stop growing at some point (400px, when screen is 1400)

This commit is contained in:
2024-11-27 15:27:48 -06:00
parent 8a16010977
commit f503c008ec

View File

@ -804,3 +804,17 @@ input[type="search"]::-webkit-search-results-decoration
{
color: #0062FF !important;
}
@media (min-width: 1400px)
{
.recordSidebar
{
max-width: 400px !important;
}
.recordWithSidebar
{
max-width: 100% !important;
flex-grow: 1 !important;
}
}