Skip to content

Commit

Permalink
progress responsive design
Browse files Browse the repository at this point in the history
  • Loading branch information
fbohz committed Jun 28, 2020
1 parent 0c56fd5 commit 34d4e32
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions museo-demo/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,12 @@ body {
-webkit-hyphens: auto;
hyphens: auto; } }

@media screen and (max-width: 800px) {
.popup__img {
display: none; }
.popup__left {
display: none; } }

.header {
height: 95vh;
/* gradient on image right to bottom */
Expand Down
13 changes: 13 additions & 0 deletions museo-demo/sass/components/_popup.scss
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,17 @@
hyphens: auto;
}
}
}

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

.popup {
&__img {
display: none;
}
&__left {
display: none;
}
}

}

0 comments on commit 34d4e32

Please sign in to comment.