Skip to content

Commit

Permalink
Merge pull request #181 from map3xyz/fix/sm-media-query
Browse files Browse the repository at this point in the history
fix(style): text-xs and text-sm
  • Loading branch information
plondon authored Apr 2, 2023
2 parents cd58bdc + 23f60c1 commit e41799f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,11 @@ root.render(
},
selection: {
// BUSD
assetId: 'da5eb9b1-7e2b-4976-a260-07a3eab89618',
// assetId: 'da5eb9b1-7e2b-4976-a260-07a3eab89618',
// paymentMethod: 'binance-pay',
},
style: {
colors: {
accent: '#dfff86',
primary: '#0e1523',
},
theme: 'dark',
},
},
userId: 'preview-user-id',
Expand Down
12 changes: 12 additions & 0 deletions src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,16 @@
-webkit-appearance: none;
margin: 0;
}

@media (min-width: 640px) {
.sm\:text-xs {
font-size: .75rem !important;
line-height: 1rem !important;
}

.sm\:text-sm {
font-size: .875rem !important;
line-height: 1.25rem !important;
}
}
}

0 comments on commit e41799f

Please sign in to comment.