fix(css): restore original layout, re-add only image grid styles
Reverted CSS to the known-working state at 4b0cde9, then re-applied
only the image grid styles. The duplicate .results-layout block is
intentional — it was present in the working version too.
This commit is contained in:
parent
2f10f4e1e5
commit
00b2be9e79
1 changed files with 44 additions and 0 deletions
|
|
@ -1130,6 +1130,50 @@ a:focus-visible {
|
|||
background: var(--border-focus);
|
||||
}
|
||||
|
||||
/* ============================================================
|
||||
Three-Column Results Layout
|
||||
============================================================ */
|
||||
|
||||
.results-layout {
|
||||
display: grid;
|
||||
grid-template-columns: 200px 1fr 240px;
|
||||
gap: 2rem;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.results-layout .left-sidebar,
|
||||
.results-layout .right-sidebar {
|
||||
position: sticky;
|
||||
top: calc(var(--header-height) + 1.5rem);
|
||||
max-height: calc(100vh - var(--header-height) - 3rem);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.results-layout .results-column {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
/* Tablet: hide left sidebar, two columns */
|
||||
@media (min-width: 769px) and (max-width: 1024px) {
|
||||
.results-layout {
|
||||
grid-template-columns: 1fr 220px;
|
||||
}
|
||||
.results-layout .left-sidebar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile: single column, no sidebars */
|
||||
@media (max-width: 768px) {
|
||||
.results-layout {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.results-layout .left-sidebar,
|
||||
.results-layout .right-sidebar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* ============================================================
|
||||
Preferences Page Layout
|
||||
============================================================ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue