diff --git a/components/Account.vue b/components/Account.vue index ab414fc6..e9441c36 100644 --- a/components/Account.vue +++ b/components/Account.vue @@ -223,7 +223,7 @@ @import "assets/variables"; .profile-current { - border-left: 3px solid $primary; + border-inline-start: 3px solid $primary; } .narrow-message { diff --git a/components/Dictionary.vue b/components/Dictionary.vue index f964d9c1..4b24eb01 100644 --- a/components/Dictionary.vue +++ b/components/Dictionary.vue @@ -308,7 +308,7 @@ @import "assets/variables"; .list-singular { - padding-left: 0; + padding-inline-start: 0; list-style: none; li { white-space: nowrap; @@ -327,7 +327,7 @@ } } .list-plural { - padding-left: 0; + padding-inline-start: 0; list-style: none; li { white-space: nowrap; diff --git a/components/Header.vue b/components/Header.vue index 1a447464..b46dae83 100644 --- a/components/Header.vue +++ b/components/Header.vue @@ -69,7 +69,7 @@
- diff --git a/routes/profile.vue b/routes/profile.vue index a50c4f14..b9ad9701 100644 --- a/routes/profile.vue +++ b/routes/profile.vue @@ -6,7 +6,7 @@ @{{username}}
-
+
@@ -228,8 +228,8 @@ .list-group-item-hoverable { &:hover { color: $primary; - border-left: 3px solid $primary; - padding-left: calc(#{$list-group-item-padding-x} - 2px); + border-inline-start: 3px solid $primary; + padding-inline-start: calc(#{$list-group-item-padding-x} - 2px); } } diff --git a/routes/select.vue b/routes/select.vue index 93cb68ea..3f8fda68 100644 --- a/routes/select.vue +++ b/routes/select.vue @@ -16,8 +16,8 @@ .list-group-item-hoverable { &:hover { color: $primary; - border-left: 3px solid $primary; - padding-left: calc(#{$list-group-item-padding-x} - 2px); + border-inline-start: 3px solid $primary; + padding-inline-start: calc(#{$list-group-item-padding-x} - 2px); } }