Replies: 2 comments
|
Can you give the exact steps to reproduce the issue. BTW, the media query will only work once the preview is resized to the given media width. |
0 replies
|
It is a matter of writing. --------Not working-------- .flex01{ --------It's okay-------- .flex01{ @media screen and (max-width: 768px) { |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
The preview will not work with the following responsive writing style.
Can I make it work in the settings?
.flex01{
display: flex;
align-items: flex-start;
@media screen and (max-width: 768px) {
flex-direction:column;
}
}
All reactions