Skip to content

Commit

Permalink
fix field focus
Browse files Browse the repository at this point in the history
  • Loading branch information
maxboeck committed Apr 15, 2019
1 parent 874acce commit 7ffd846
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
6 changes: 0 additions & 6 deletions src/assets/styles/base/_reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,6 @@ ol[class] {
list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
text-decoration: underline;
text-decoration-skip-ink: auto;
cursor: pointer;
}
/* Turn off the recent search in WebKit. */
::-webkit-search-decoration {
display: none;
Expand Down
1 change: 1 addition & 0 deletions src/assets/styles/base/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ h3,
a {
color: $brand-primary;
font-weight: 500;
text-decoration: none;

&:hover,
&:focus {
Expand Down
2 changes: 1 addition & 1 deletion src/includes/signupform.njk
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<label for="input-feed" class="form__label">RSS Feed URL (optional):</label>
<input type="url" name="feed" id="input-feed" class="form__input" placeholder="https://www.franks-site.org/feed.xml" />
</p>
<div class="sr-only" aria-hidden="true">
<div class="sr-only" style="visibility:hidden" aria-hidden="true">
<label for="input-bot">Don’t fill this out if you're human:</label>
<input type="text" name="bot" id="input-bot" />
</div>
Expand Down

0 comments on commit 7ffd846

Please sign in to comment.