Skip to content

Commit

Permalink
fix: ajusta font sizes en viewport pequeños
Browse files Browse the repository at this point in the history
  • Loading branch information
raulghm committed Oct 16, 2019
1 parent 4ab4ae2 commit b528f14
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
9 changes: 8 additions & 1 deletion src/components/StoreItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,17 @@ export default {
.StoreItem-meta-name {
font-family: var(--font-family-primary);
font-weight: 600;
font-size: 1.2rem;
font-size: 1.1rem;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 6px;
margin-right: 80px;
}
@media (--sm-viewport) {
.StoreItem-meta-name {
font-size: 1.2rem;
}
}
.StoreItem-meta-address {
Expand Down
8 changes: 7 additions & 1 deletion src/components/StoreItemFull.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,18 @@ export default {
.StoreItemFull-name {
font-family: var(--font-family-primary);
font-weight: 600;
font-size: 2rem;
font-size: 1.6rem;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 6px;
}
@media (--sm-viewport) {
.StoreItemFull-name {
font-size: 2rem;
}
}
.StoreItemFull-address {
margin-bottom: 2px;
}
Expand Down

0 comments on commit b528f14

Please sign in to comment.