Skip to content

Commit

Permalink
Adding bottom padding to show the toggle button in mobile devices.
Browse files Browse the repository at this point in the history
  • Loading branch information
areyeslo committed Aug 26, 2024
1 parent 71182ab commit 3dda3ca
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/subscriber/src/features/settings/styled/SettingsLanding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,14 @@ export const SettingsLanding = styled(Row)<{ split?: boolean }>`
width: 1.2rem;
}
}
@media (max-width: 768px) {
.page-section {
padding-bottom: 50px;
}
}
@media (max-width: 853px) {
.page-section {
padding-bottom: 60px;
}
}
`;

0 comments on commit 3dda3ca

Please sign in to comment.