mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-22 05:02:18 +08:00
17 lines
306 B
CSS
17 lines
306 B
CSS
@media only screen and (min-width: 700px) {
|
|
.breakpoint-min-width-700 {
|
|
display: block;
|
|
}
|
|
.breakpoint-max-width-700 {
|
|
display: none;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 700px) {
|
|
.breakpoint-min-width-700 {
|
|
display: none;
|
|
}
|
|
.breakpoint-max-width-700 {
|
|
display: block;
|
|
}
|
|
}
|