Skip to content

Commit 246c51f

Browse files
authored
Merge pull request #24 from make-software/feature/add-sepatator-for-table-row-first-child
Added separator for table row first child
2 parents cfd167b + 3705a7d commit 246c51f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

dist/cspr-design.es.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17132,7 +17132,7 @@ const Kh = S.tr.withConfig({
1713217132
":hover, :active": {
1713317133
background: t ? "" : e.styleguideColors.fillSecondary
1713417134
},
17135-
":not(:first-child):after": {
17135+
":after": {
1713617136
content: "''",
1713717137
position: "absolute",
1713817138
left: 20,

dist/cspr-design.umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/components/table-row/table-row.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const StyledTableRow = styled.tr<{
2424
':hover, :active': {
2525
background: !$loading ? theme.styleguideColors.fillSecondary : '',
2626
},
27-
':not(:first-child):after': {
27+
':after': {
2828
content: "''",
2929
position: 'absolute',
3030
left: 20,

0 commit comments

Comments
 (0)