Skip to content

Commit

Permalink
list padding important for divi #432
Browse files Browse the repository at this point in the history
  • Loading branch information
joshreisner committed Feb 3, 2025
1 parent 7e4c311 commit 9e4c743
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion public/app.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions src/styles/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ export const tableCss = css`
td {
cursor: pointer;
display: block;
padding: 0 ${size.gutter / 2}px 0 103px;
padding: 0 ${size.gutter / 2}px 0 103px !important;
&.tsml-time,
&.tsml-distance {
padding-left: ${size.gutter / 2}px;
padding-left: ${size.gutter / 2}px !important;
position: absolute;
}
&.tsml-distance {
Expand All @@ -67,14 +67,14 @@ export const tableCss = css`
@media ${media.mdAndUp} {
border-bottom: 1px solid ${color.medium};
display: table-cell;
padding: ${size.gutter / 2}px;
padding: ${size.gutter / 2}px !important;
position: static !important;
&.tsml-time,
&.tsml-distance {
padding-left: ${size.gutter}px;
padding-left: ${size.gutter}px !important;
}
&:last-of-type {
padding-right: ${size.gutter}px;
padding-right: ${size.gutter}px !important;
}
}
}
Expand Down

0 comments on commit 9e4c743

Please sign in to comment.