-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Closed
Description
I wanted to hide an element and remove the spacing:
class="sm:hidden"
-> .hidden {display: none;}
To show an element back I tried:
class="md:visible"
-> .visible {visible: visible;}
But I needed:
-> display: flex;
I wanted to show the element so I thought about the class visible but needed:
class="md:flex"
-> .flex {display: flex;}
I would put in the documentation next to hidden that you can make it visible back with the flex class.
missmatsuko
Metadata
Metadata
Assignees
Labels
No labels