Skip to content

Commit

Permalink
feat: adding @media for responsiveness based on screen size
Browse files Browse the repository at this point in the history
  • Loading branch information
Sadaf-A authored Jul 9, 2024
1 parent 8375bab commit ee03eb8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions static/styles/rewards/claim-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,18 @@ table td div {
white-space: nowrap;
max-width: 240px;
}

@media (max-width: 768px) {
table td div {
max-width: 200px;
}
}

@media (max-width: 480px) {
table td div {
max-width: 150px;
}
}
table td div svg ~ div {
width: unset;
}
Expand Down

0 comments on commit ee03eb8

Please sign in to comment.