A set of style fixes for rtl langs

This commit is contained in:
daudix
2024-06-17 05:21:54 +03:00
parent f7dcab6c1d
commit 2abb4d234c
8 changed files with 108 additions and 48 deletions

View File

@ -7,6 +7,11 @@ section#comments {
width: 150px;
height: 150px;
body[dir="rtl"] & {
float: left;
margin: 3rem 1rem 0 0;
}
@media only screen and (max-width: 720px) {
display: none;
}
@ -35,6 +40,13 @@ section#comments {
border-left: 0.25rem solid var(--fg-muted-2);
border-radius: 0.25rem;
padding-left: 1rem;
body[dir="rtl"] & {
border-right: 0.25rem solid var(--fg-muted-2);
border-left: unset;
padding-right: 1rem;
padding-left: unset;
}
}
.avatar-link {