Skip to content

Commit

Permalink
Fix table scroll on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcss committed Nov 8, 2024
1 parent 6800c82 commit 2db806a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/scss/base/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ ul{
}

table{
display: table;
@include media-breakpoint-up(lg) {
display: table;
}
&, tbody{
width: 100%;
}
Expand All @@ -139,6 +141,9 @@ ul{
& > :last-child{
margin-bottom: 0;
}
@include media-breakpoint-down(lg) {
min-width: 120px;
}
}
tr{
border: none;
Expand Down

0 comments on commit 2db806a

Please sign in to comment.