Skip to content

Commit

Permalink
fixed FF bug where an a tag inside of a button did not work
Browse files Browse the repository at this point in the history
  • Loading branch information
drewminns committed May 23, 2016
1 parent aa4bfef commit 7d0e754
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
12 changes: 5 additions & 7 deletions assets/styles/utilities/_form.scss
Expand Up @@ -37,16 +37,14 @@ label {
vertical-align: middle;
}

button.login {
button.login, .login {
display: inline-block;
font-size: 2rem;
background: #111;
border: 0;
a {
display: inline-block;
text-decoration: none;
padding: 10px 30px;
color: white;
}
padding: 10px 30px;
color: white;
text-decoration: none;
}

button.deleteAll {
Expand Down
2 changes: 1 addition & 1 deletion public/styles/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/styles/main.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions views/index.jade
Expand Up @@ -25,8 +25,8 @@ html(lang='en')
.wrapper
h1 slack deletron
p.lead delete those cat gifs and other weird files
button.login
a(href="auth/slack") login with slack
a.login(href="auth/slack")
| login with slack
section.content
.wrapper
.leftcontent
Expand Down

0 comments on commit 7d0e754

Please sign in to comment.