feat: replace border-top with logical properties

This commit is contained in:
kolaente 2025-08-03 12:59:43 +02:00
parent a25a4a00c9
commit 21943b61eb
7 changed files with 8 additions and 8 deletions

View File

@ -190,7 +190,7 @@ function onUpdateField(e) {
background: var(--white);
border-radius: 0 0 var(--input-radius) var(--input-radius);
border: 1px solid var(--primary);
border-top: none;
border-block-start: none;
max-height: 50vh;
overflow-x: auto;

View File

@ -513,7 +513,7 @@ function focus() {
background: var(--white);
border-radius: 0 0 $radius $radius;
border: 1px solid var(--primary);
border-top: none;
border-block-start: none;
max-height: 50vh;
overflow-x: auto;

View File

@ -888,7 +888,7 @@ watch(
hr {
border: none;
border-top: 2px solid rgba(#0d0d0d, 0.1);
border-block-start: 2px solid rgba(#0d0d0d, 0.1);
margin: 2rem 0;
}
}

View File

@ -88,7 +88,7 @@ defineEmits<{
.card-footer {
background-color: var(--grey-50);
border-top: 0;
border-block-start: 0;
padding: var(--modal-card-head-padding);
display: flex;
justify-content: flex-end;

View File

@ -264,7 +264,7 @@ const dateIsToday = computed(() => (date: Date) => {
.g-gantt-row > .g-gantt-row-bars-container {
border-bottom: none !important;
border-top: none !important;
border-block-start: none !important;
}
.g-gantt-row:nth-child(odd) {

View File

@ -6,7 +6,7 @@
}
.table.has-actions {
border-top: 1px solid var(--grey-100);
border-block-start: 1px solid var(--grey-100);
border-radius: 4px;
overflow: hidden;

View File

@ -10,7 +10,7 @@
}
.flatpickr-calendar.hasTime .flatpickr-time {
border-top: 1px solid var(--grey-200) !important;
border-block-start: 1px solid var(--grey-200) !important;
}
.flatpickr-calendar.arrowTop:before {
@ -63,7 +63,7 @@
}
.numInputWrapper span.arrowDown:after {
border-top: 4px solid var(--grey-200) !important;
border-block-start: 4px solid var(--grey-200) !important;
top: 40% !important;
}