Skip to content

Commit

Permalink
Tweak media query CSS.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgardner committed Jun 26, 2023
1 parent 08aa3e0 commit e445053
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -195,25 +195,25 @@ textarea {
/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (max-width: 782px) {
@media only screen and (min-width: 600px) {

/* Columns
/* Navigation Link
--------------------------------------------- */

.is-style-columns-reverse {
flex-direction: column-reverse;
.wp-block-navigation-item.is-style-outline a {
border: 1px solid currentColor;
padding: 8px 15px;
}

}

@media only screen and (min-width: 800px) {
@media only screen and (max-width: 782px) {

/* Navigation Link
/* Columns
--------------------------------------------- */

.wp-block-navigation-item.is-style-outline a {
border: 1px solid currentColor;
padding: 8px 15px;
.is-style-columns-reverse {
flex-direction: column-reverse;
}

}

0 comments on commit e445053

Please sign in to comment.