feat: replace border-bottom with logical properties

This commit is contained in:
kolaente 2025-08-03 13:00:20 +02:00
parent 21943b61eb
commit 5cd256c485
6 changed files with 7 additions and 7 deletions

View File

@ -136,7 +136,7 @@ async function setApiUrl() {
}
.url {
border-bottom: 1px dashed var(--primary);
border-inline-end: 1px dashed var(--primary);
}
.api-config__change-button {

View File

@ -82,7 +82,7 @@ defineEmits<{
.card-header {
box-shadow: none;
border-bottom: 1px solid var(--card-border-color);
border-inline-end: 1px solid var(--card-border-color);
border-radius: $radius $radius 0 0;
}

View File

@ -263,7 +263,7 @@ const dateIsToday = computed(() => (date: Date) => {
}
.g-gantt-row > .g-gantt-row-bars-container {
border-bottom: none !important;
border-inline-end: none !important;
border-block-start: none !important;
}

View File

@ -59,7 +59,7 @@
}
.numInputWrapper span.arrowUp:after {
border-bottom: 4px solid var(--grey-200) !important;
border-inline-end: 4px solid var(--grey-200) !important;
}
.numInputWrapper span.arrowDown:after {

View File

@ -1128,7 +1128,7 @@ h3 .button {
margin-block-end: 0;
table tr:last-child td {
border-bottom: none;
border-inline-end: none;
}
}

View File

@ -65,7 +65,7 @@ ul.teams {
li {
list-style: none;
margin: 0;
border-bottom: 1px solid var(--grey-200);
border-inline-end: 1px solid var(--grey-200);
a {
color: var(--text);
@ -80,7 +80,7 @@ ul.teams {
}
li:last-child {
border-bottom: none;
border-inline-end: none;
}
}
</style>