Skip to content

Commit

Permalink
Merge pull request #77 from cohure/dev
Browse files Browse the repository at this point in the history
fix: buttons on mobile not displaying properly
  • Loading branch information
MinaAlmasi authored Nov 25, 2024
2 parents fc20bf6 + 0d30666 commit 66564fb
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 6 deletions.
9 changes: 8 additions & 1 deletion content/venue.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ title: "Venue"
/* define banner for about page */
.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 0px;
}
Expand Down Expand Up @@ -68,6 +68,13 @@ title: "Venue"
width: 28px;
height: 28px;
}

.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 0px;
}
}
</style>

Expand Down
9 changes: 8 additions & 1 deletion content/venue/finding-the-venue.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ title: "Finding the Conference Venue"
/* define banner for about page */
.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 0px;
}
Expand Down Expand Up @@ -127,6 +127,13 @@ title: "Finding the Conference Venue"
width: 28px;
height: 28px;
}

.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 0px;
}
}
</style>

Expand Down
9 changes: 8 additions & 1 deletion content/venue/getting-around-aarhus.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ title: "Getting around in Aarhus"
/* define banner for about page */
.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 0px;
}
Expand Down Expand Up @@ -78,6 +78,13 @@ title: "Getting around in Aarhus"
width: 28px;
height: 28px;
}

.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 0px;
}
}
</style>

Expand Down
9 changes: 8 additions & 1 deletion docs/venue/finding-the-venue/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ <h3 class="header center"></h3>
/* define banner for about page */
.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 0px;
}
Expand Down Expand Up @@ -210,6 +210,13 @@ <h3 class="header center"></h3>
width: 28px;
height: 28px;
}

.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 0px;
}
}
</style>
<p>The main address of the CHR2024 conference is <a href="https://maps.app.goo.gl/9sM2wLpzXuNjrWNr8">Bartholins Allé 8, 8000 Aarhus C</a>, where the registration and breakfast takes place on the first day. Read more about transport:</p>
Expand Down
9 changes: 8 additions & 1 deletion docs/venue/getting-around-aarhus/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ <h3 class="header center"></h3>
/* define banner for about page */
.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 0px;
}
Expand Down Expand Up @@ -162,6 +162,13 @@ <h3 class="header center"></h3>
width: 28px;
height: 28px;
}

.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 0px;
}
}
</style>
<p>Discover the many travel options that Aarhus has, and read more about how to buy tickets for public transport in Aarhus.</p>
Expand Down
9 changes: 8 additions & 1 deletion docs/venue/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ <h3 class="header center"></h3>
/* define banner for about page */
.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 0px;
}
Expand Down Expand Up @@ -151,6 +151,13 @@ <h3 class="header center"></h3>
width: 28px;
height: 28px;
}

.banner-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 0px;
}
}
</style>
<!--WRITTEN CONTENT STARTS HERE-->
Expand Down

0 comments on commit 66564fb

Please sign in to comment.