Merge pull request #1942 from atmonshi/rtl-css

fix some css for RTL
This commit is contained in:
Mike Cao
2023-04-20 11:25:59 -07:00
committed by GitHub
5 changed files with 11 additions and 11 deletions

View File

@@ -10,16 +10,16 @@
}
.row > .col {
border-left: 1px solid var(--base300);
border-inline-start: 1px solid var(--base300);
}
.row > .col:first-child {
border-left: 0;
padding-left: 0;
border-inline-start: 0;
padding-inline-start: 0;
}
.row > .col:last-child {
padding-right: 0;
padding-inline-end: 0;
}
@media only screen and (max-width: 992px) {
@@ -29,7 +29,7 @@
.row > .col {
border-top: 1px solid var(--base300);
border-left: 0;
border-inline-end: 0;
padding: 20px 0;
}
}