Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Added display rules for 600px 768px 992px and 200px breakpoints
  • Loading branch information
pulkitxm committed Jun 27, 2023
commit 655ed2e9a8aa430c533df010d95072b9757d61dd
8 changes: 7 additions & 1 deletion src/display.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
object-fit: cover;
}

@media screen and (min-width: 600px) {
.sm-d-flex {
display: flex;
}
}

@media screen and (min-width: 768px) {
.md-d-flex {
display: flex;
Expand All @@ -38,4 +44,4 @@
.xl-d-flex {
display: flex;
}
}
}