Fix category border styling

This commit is contained in:
Hadi Nategh 2022-09-12 15:15:56 +02:00
parent 26824323e5
commit 1489944d49
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ export class Et2SelectCategory extends Et2StaticSelectMixin(Et2Select)
}
/* Border on the (single) selected value */
.select--standard .select__control {
border-left: 8px solid var(--sl-input-border-color);
border-left: 6px solid var(--sl-input-border-color);
}
`
]

View File

@ -25,7 +25,7 @@ export class Et2CategoryTag extends Et2Tag
.tag {
gap: var(--sl-spacing-2x-small);
/* --category-color is passed through in _styleTemplate() */
border-left: 10px solid var(--category-color, transparent);
border-left: 6px solid var(--category-color, transparent);
}
`];
}