When the resolution is under 1440p, the site is left justified (yay) When the site is 1440p, it switches to center justified (boo) I see a lot of random people asking for this behavior, but I do not desire it at all. Is there anyway to disable this? I ALWAYS want the results at the left, even if I’m using a 10000 x 5000 screen.
Sounds like this would fit under:
Search Feedback
rather then:
Search Support
if you’d care to update your category
just a suggestion
You can update it, I don’t care. For any humans reading this who have a similar problem, you can use this css with something like stylus to change the behavior.
@-moz-document domain(“search.brave.com”) {
:root {
–main-column-width: 70vw;
–sidebar-width: 20vw;
–max-content-width: 50vw;
–margin-width: 1vw;
}
@media (min-width: 2300px) {
div .column-layout.svelte-ls0vpt.svelte-ls0vpt {
margin-left: 100px;
margin-right: auto;
margin-top: auto;
margin-bottom: auto;
}
div .header-content.svelte-8yav4t.svelte-8yav4t {
margin-left: 250px;
margin-right: auto;
margin-top: auto;
margin-bottom: auto;
}
div .nav-tabs-content.svelte-53k8zm {
margin-left: 80px;
margin-right: auto;
margin-top: auto;
margin-bottom: auto;
}
}
}
No idea how long it work or if it will be broken for you, and no idea why this isn’t an option.