Skip to content

Commit

Permalink
Merge pull request #427 from GenaDrop/staging
Browse files Browse the repository at this point in the history
Fixed store card
  • Loading branch information
Jikugodwill authored Sep 29, 2024
2 parents b04acd7 + 00e501c commit 482bd19
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/Mintbase/widget/Mintbase/App/Store/Card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ const StoreCard = styled.div`
}
}
@media (max-width: 568px){
max-width: 70%;
width: 100%;
margin: 0;
}
`;
Expand Down
2 changes: 1 addition & 1 deletion apps/Mintbase/widget/Mintbase/App/Store/Cards.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Root = styled.div`

const MainCardsGrid = styled.div`
display: grid;
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
grid-gap: 20px;
border-radius: 0.7em;
width: 100%;
Expand Down
7 changes: 6 additions & 1 deletion apps/Mintbase/widget/Mintbase/Mini/Index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,12 @@ const Card = styled.div`
color: white;
}
.content_main {
margin: 48px 44px 48px 44px;
margin: 48px 44px;
/* tablets and mobile */
@media (max-width: 768px) {
margin: 18px 4px;
}
}
.stripe-data {
display: flex;
Expand Down

0 comments on commit 482bd19

Please sign in to comment.