diff options
| author | Bnyro <bnyro@tutanota.com> | 2025-01-07 14:39:56 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-01-14 15:22:23 +0100 |
| commit | 94b6adf03d3c5e7564b08063fe8dd9bf43d18775 (patch) | |
| tree | 4a5221f00f8e4d34f518af7f1e2f07b20c35eb7e /searx/static/themes/simple/src/less/style-center.less | |
| parent | 337a6db064ad36b3005431feaa0a5efd8548d04f (diff) | |
[chore] stylelint: fix reported errors
Diffstat (limited to 'searx/static/themes/simple/src/less/style-center.less')
| -rw-r--r-- | searx/static/themes/simple/src/less/style-center.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/static/themes/simple/src/less/style-center.less b/searx/static/themes/simple/src/less/style-center.less index 8256f45ac..3618bed86 100644 --- a/searx/static/themes/simple/src/less/style-center.less +++ b/searx/static/themes/simple/src/less/style-center.less @@ -14,7 +14,7 @@ on the /search URL and when the "center alignment" preference is enabled. } } -@media screen and (min-width: 62rem) { +@media screen and (width >= 62rem) { .center-alignment-yes #main_results { --center-page-width: 60rem; } @@ -91,7 +91,7 @@ on the /search URL and when the "center alignment" preference is enabled. align-self: flex-start; } - &:not(.only_template_images):not(.image-detail-open) { + &:not(.only_template_images, .image-detail-open) { // the gap is set in style.less .ltr-margin-left(1.5rem); grid-template-columns: calc(var(--center-page-width) - @results-gap - @results-sidebar-width) @results-sidebar-width; |