Skip to content

Commit

Permalink
fix: apply border-radius
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmatthew committed Mar 4, 2022
1 parent 4f7630d commit 688583b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/assets/css/custom-full.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/css/custom-full.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/css/custom.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/css/custom.css.map

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion scss/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,18 @@ th,

.o-table__sort-btn:focus {
color: $black;
border-radius: $border-radius;
background-color: $table-striped-bg;
box-shadow: 0 0 0 2px inset $accent;
}

.table-lg .o-table__sort-btn {
padding: $table-cell-padding-y-lg $table-cell-padding-x-lg
padding: $table-cell-padding-y-lg $table-cell-padding-x-lg;
}

.table-lg .o-table__sort-btn:focus {
padding: $table-cell-padding-y-lg $table-cell-padding-x-lg;
border-radius: $border-radius-lg;
}

th:not([aria-sort]) .o-table__sort-btn .o-table__sort-btn__arrow--up,
Expand Down

0 comments on commit 688583b

Please sign in to comment.