Skip to content

Commit

Permalink
Add conditional css to hide basemap text on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
green3g committed May 26, 2017
1 parent f03f0b1 commit b3eca73
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion viewer/js/gis/dijit/Basemaps/css/Basemaps.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,13 @@
.basemapsIcon:before {
font-family: FontAwesome;
content: "\f009";
}
}


/* condense dropdown on small screens */

@media screen and (max-width: 600px) {
#basemaps_widget .dijitButtonText {
display: none;
}
}

0 comments on commit b3eca73

Please sign in to comment.