mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-05 01:37:17 +00:00
28 lines
627 B
SCSS
28 lines
627 B
SCSS
@mixin table-border($border-width) {
|
|
table {
|
|
tr td:first-child,
|
|
tr th:first-child {
|
|
border-left-width: $border-width;
|
|
}
|
|
}
|
|
#{$table-prefix}-header {
|
|
th {
|
|
border-top-width: $border-width;
|
|
}
|
|
tr th:last-child {
|
|
border-right-width: $border-width;
|
|
}
|
|
}
|
|
#{$table-prefix}-body {
|
|
td {
|
|
border-top-width: $border-width;
|
|
}
|
|
tr:last-child td {
|
|
border-bottom-width: $border-width;
|
|
}
|
|
tr td:last-child {
|
|
border-right-width: $border-width;
|
|
}
|
|
}
|
|
}
|