epicmaxco / vuestic-ui

Free and Open Source UI Library for Vue 3 🤘
https://vuestic.dev
MIT License
3.31k stars 321 forks source link

fix(VaDataTable): use background color and opacity without mixin #4237

Closed ahmadJT closed 1 week ago

ahmadJT commented 3 weeks ago

Description

used background color and opacity without mixin Screenshot 2024-04-25 at 06 39 05 Screenshot 2024-04-25 at 06 39 12

closes #4236

Markup:

```vue &.striped { .va-data-table__table-tbody { .va-data-table__table-tr { &:nth-of-type(2n) { &:not(.selected) { td { // Position relative doesn't work on tr in Safari position: relative; background: var(--va-data-table-striped-tr-background-color); opacity: var(--va-data-table-striped-tr-opacity); } } } } } } ```

Types of changes