Skip to content

Commit

Permalink
fix input to button
Browse files Browse the repository at this point in the history
  • Loading branch information
vwolfley committed Mar 2, 2024
1 parent dce588e commit 45a6b32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion chamber/join.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ <h2 class="header">Join the West Valley Chamber of Commerce</h2>
<label class="sbs"><input type="radio" name="membership" value="gold" required /> Gold Membership</label>
</fieldset>
<div id="submitmessage" class="hide" role="alert"></div>
<input class="submitBtn" type="submit" value="Join" onclick="validateForm(event)" />
<button class="submitBtn" type="button" onclick="validateForm(event)">Join</button>

<input type="hidden" name="timestampmilli" id="timestampmilli" />
</form>
</div>
Expand Down
4 changes: 2 additions & 2 deletions chamber/styles/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ form label.sbs {
padding: 0.75rem 0;
color: var(--text-color-main);
}
form input.submitBtn {
form .submitBtn {
border: none;
background-color: var(--accent3-color);
color: var(--text-color-secondary);
Expand All @@ -827,7 +827,7 @@ form input.submitBtn {
width: 96%;
max-width: 20rem;
}
form input.submitBtn:hover {
form .submitBtn:hover {
background-color: var(--accent4-color);
cursor: pointer;
}
Expand Down

0 comments on commit 45a6b32

Please sign in to comment.