feat: replace border-bottom with logical properties
This commit is contained in:
parent
21943b61eb
commit
5cd256c485
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -1128,7 +1128,7 @@ h3 .button {
|
|||
margin-block-end: 0;
|
||||
|
||||
table tr:last-child td {
|
||||
border-bottom: none;
|
||||
border-inline-end: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue