Skip to content

Commit

Permalink
change div to section
Browse files Browse the repository at this point in the history
  • Loading branch information
ccatherinetan committed Jan 11, 2024
1 parent 1bbabe3 commit 5d14e9a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/Contact.astro
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="container">
<section>
<h4 id="contact">CONTACT US</h4>
<div class="spacer"></div>
<div class="row">
Expand All @@ -13,10 +13,10 @@
if you need a particular accommodation.
Note that requests made less than 24 hours before the event will likely not be accommodated.
</p>
</div>
</section>

<style lang="scss">
div.container {
section {
display: flex;
flex-direction: column;
align-items: center;
Expand All @@ -38,7 +38,6 @@
}

a.email {
line-height: 150%;
text-decoration-line: underline; // the underline is too close to the text...
}
</style>
1 change: 1 addition & 0 deletions src/styles/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ a {
color: colors.$link;
text-decoration: none;
font-weight: 700;
line-height: 150%;
}

button {
Expand Down

0 comments on commit 5d14e9a

Please sign in to comment.