Skip to content

Commit

Permalink
feat: always refer to 100vh
Browse files Browse the repository at this point in the history
  • Loading branch information
crymis committed Jul 12, 2024
1 parent 15c9f90 commit 54029ce
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions Wordpress style adjustment.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
<style>
.design-patterns {
iframe[title*="Design Patterns"] {
width: 150%;
max-width: 150%;
margin-left: -25%;
width: 100%;
max-width: 100%;
border-radius: 12px;
height: 700px;
height: 600px;
}
}
</style>
Expand Down
2 changes: 1 addition & 1 deletion condensing/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ a {

.layout {
display: grid;
grid-template-rows: minmax(100vh, 100%);
grid-template-rows: 100vh;
grid-template-columns: minmax(100px, 0.2fr) 1fr;

>nav {
Expand Down
2 changes: 1 addition & 1 deletion overlapping/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ a {

.layout {
display: grid;
grid-template-rows: minmax(100vh, 100%);
grid-template-rows: 100vh;
grid-template-columns: minmax(100px, 0.2fr) 1fr;

>nav {
Expand Down
2 changes: 1 addition & 1 deletion reserved/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ a {

.layout {
display: grid;
grid-template-rows: minmax(100vh, 100%);
grid-template-rows: 100vh;
grid-template-columns: minmax(100px, 0.2fr) 1fr;

>nav {
Expand Down

0 comments on commit 54029ce

Please sign in to comment.