Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e4fbaf0

Browse files
committedJun 30, 2024··
Trim down HTML
1 parent 46a0974 commit e4fbaf0

File tree

2 files changed

+25
-15
lines changed

2 files changed

+25
-15
lines changed
 

Diff for: ‎sass/_extra.scss

+12
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,16 @@ video+em {
126126
display: block;
127127
text-align: center;
128128
color: $grey-color;
129+
}
130+
131+
.email-form {
132+
display: flex;
133+
134+
.email-input {
135+
margin-right: 0px;
136+
}
137+
138+
.email-submit {
139+
margin-left: 0px;
140+
}
129141
}

Diff for: ‎templates/includes/email_signup.html

+13-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
1-
<div id="mc_embed_signup">
2-
<form action="https://gamedev.us22.list-manage.com/subscribe/post?u=3b2317bf9350c11e252162541&amp;id=aaf37783ec&amp;f_id=0011cde1f0" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_self" novalidate="">
3-
<div id="mc_embed_signup_scroll">
4-
<div class="mc-field-group">
5-
<label for="mce-EMAIL">Email Address </label>
6-
<input type="email" name="EMAIL" class="required email" id="mce-EMAIL" required="" value="">
7-
</div>
8-
<div class="clear">
9-
<input type="submit" name="subscribe" id="mc-embedded-subscribe" class="btn" value="Subscribe">
10-
</div>
11-
<div style="position: absolute; left: -5000px;" aria-hidden="true">
12-
<input type="text" name="b_3b2317bf9350c11e252162541_aaf37783ec" tabindex="-1" value="">
13-
</div>
1+
<form action="https://gamedev.us22.list-manage.com/subscribe/post?u=3b2317bf9350c11e252162541&amp;id=aaf37783ec&amp;f_id=0011cde1f0" method="post" name="mc-embedded-subscribe-form">
2+
<div class="email-form">
3+
<div class="email-input">
4+
<label for="email-input">Email Address</label>
5+
<input type="email" inputmode="email" name="EMAIL" id="email-input" required>
146
</div>
15-
</form>
16-
</div>
7+
<div class="email-submit">
8+
<button type="submit" name="subscribe" class="btn">Subscribe</button>
9+
</div>
10+
<div style="position: absolute; left: -5000px;" aria-hidden="true">
11+
<input type="text" name="b_3b2317bf9350c11e252162541_aaf37783ec" tabindex="-1" value="">
12+
</div>
13+
</div>
14+
</form>
1715

0 commit comments

Comments
 (0)
Please sign in to comment.