File tree 2 files changed +5
-5
lines changed
packages/components/dist/styles
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7104,10 +7104,10 @@ button.hds-button[href]::after {
7104
7104
justify-content : flex-end;
7105
7105
}
7106
7106
.hds-table__thead .hds-table__tr : first-of-type .hds-table__th : first-child {
7107
- border-top-left-radius : var (--token-border-radius-medium )- 1px ;
7107
+ border-top-left-radius : calc ( var (--token-border-radius-medium ) - 1px ) ;
7108
7108
}
7109
7109
.hds-table__thead .hds-table__tr : first-of-type .hds-table__th : last-child {
7110
- border-top-right-radius : var (--token-border-radius-medium )- 1px ;
7110
+ border-top-right-radius : calc ( var (--token-border-radius-medium ) - 1px ) ;
7111
7111
}
7112
7112
7113
7113
.hds-table__th--is-selectable {
@@ -7198,10 +7198,10 @@ button.hds-button[href]::after {
7198
7198
}
7199
7199
.hds-table__tbody .hds-table__tr : last-of-type .hds-table__th : first-child ,
7200
7200
.hds-table__tbody .hds-table__tr : last-of-type .hds-table__td : first-child {
7201
- border-bottom-left-radius : var (--token-border-radius-medium )- 1px ;
7201
+ border-bottom-left-radius : calc ( var (--token-border-radius-medium ) - 1px ) ;
7202
7202
}
7203
7203
.hds-table__tbody .hds-table__tr : last-of-type .hds-table__td : last-child {
7204
- border-bottom-right-radius : var (--token-border-radius-medium )- 1px ;
7204
+ border-bottom-right-radius : calc ( var (--token-border-radius-medium ) - 1px ) ;
7205
7205
}
7206
7206
.hds-table__tbody .hds-table__th ,
7207
7207
.hds-table__tbody .hds-table__td {
Original file line number Diff line number Diff line change 12
12
13
13
$hds-table-border-radius : var (--token-border-radius-medium );
14
14
$hds-table-border-width : 1px ;
15
- $hds-table-inner-border-radius : $hds-table-border-radius - $hds-table-border-width ;
15
+ $hds-table-inner-border-radius : calc ( #{ $hds-table-border-radius } - #{ $hds-table-border-width } ) ;
16
16
$hds-table-border-color : var (--token-color-border-primary );
17
17
$hds-table-header-height : 48px ;
18
18
$hds-table-cell-padding-medium : 14px 16px 13px 16px ; // the 1px difference is to account for the bottom border
You can’t perform that action at this time.
0 commit comments