Skip to content

Commit 5274158

Browse files
fix(playground): prevent horizontal scrollbar on ios device frame view (#2789)
1 parent 0ab2840 commit 5274158

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/global/Playground/playground.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,10 @@
208208
width: 0%;
209209
}
210210

211-
.playground .frame-visible {
212-
width: 100%;
211+
@media only screen and (max-width: 600px) {
212+
.playground .frame-visible {
213+
width: 100%;
214+
}
213215
}
214216

215217
/** Tabs **/

0 commit comments

Comments
 (0)