Skip to content

Commit

Permalink
Add a utility to hide stuff on mobile.
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenDufresne committed Apr 28, 2022
1 parent e8c2e78 commit 7179f76
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions source/wp-content/themes/wporg-gutenberg/style-editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,14 @@ html {
html {
font-size: 16px;
}
}

.wporg-gutenberg-hide-on-mobile {
display: none !important;
}

@media (min-width: 782px) {
.wporg-gutenberg-hide-on-mobile {
display: inherit !important;
}
}

0 comments on commit 7179f76

Please sign in to comment.