web/layout: remove sidebar rounding on desktop
Some checks failed
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Has been cancelled
Run tests / check lockfile correctness (push) Has been cancelled
Run tests / web sanity check (push) Has been cancelled
Run tests / api sanity check (push) Has been cancelled

This commit is contained in:
wukko 2025-02-07 18:51:06 +06:00
parent ca3263f1f3
commit ce510a5746
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2

View File

@ -297,21 +297,6 @@
display: flex; display: flex;
overflow: scroll; overflow: scroll;
background-color: var(--primary); background-color: var(--primary);
border-top-left-radius: var(--border-radius);
border-bottom-left-radius: var(--border-radius);
}
#content:dir(rtl) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius);
}
@media screen and (min-width: 536px) {
:global([data-theme="dark"]) #content {
border-radius: 0;
}
} }
@media screen and (max-width: 535px) { @media screen and (max-width: 535px) {
@ -329,8 +314,6 @@
#content:dir(rtl) { #content:dir(rtl) {
padding-top: env(safe-area-inset-top); padding-top: env(safe-area-inset-top);
order: -1; order: -1;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: calc(var(--border-radius) * 2); border-bottom-left-radius: calc(var(--border-radius) * 2);
border-bottom-right-radius: calc(var(--border-radius) * 2); border-bottom-right-radius: calc(var(--border-radius) * 2);
} }