If you want to make the tablet version bigger than the mobile then just use transform: scale() in your card/main container, it will be easier than writing lines of code in different places.
@media screen and (max-width: 768px) and (min-width: 481px) { .main-container { height: 765px; transform: scale(1.07); } }
- 1
No comments on this solution yet.
Be first to post.
Join Our Slack Channel
Chat and discuss solutions with a growing community of developers.