Skip to content

Commit

Permalink
mixin fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita-Polyakov committed Mar 6, 2024
1 parent 08f2052 commit bbb2eb1
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions src/styles/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -464,14 +464,7 @@ $button-custom-shadow: -1px -1px 5px rgba(0, 0, 0, 0.05), 1px 1px 5px rgba(0, 0,
&-cell {
display: flex;
align-items: center;

& + & {
margin-top: $inner-spacing-mini;
}

& > *:not(:last-child) {
margin-right: $inner-spacing-mini;
}
gap: $inner-spacing-mini;
}
}

Expand Down Expand Up @@ -535,6 +528,17 @@ $button-custom-shadow: -1px -1px 5px rgba(0, 0, 0, 0.05), 1px 1px 5px rgba(0, 0,
th.el-table__cell.is-leaf,
td.el-table__cell {
border-color: var(--s-color-base-border-secondary);

&.is-right {
.explore-table-cell {
justify-content: right;
}
}
&.is-left {
.explore-table-cell {
justify-content: left;
}
}
}

.el-table__fixed {
Expand Down

0 comments on commit bbb2eb1

Please sign in to comment.