-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.pure-button link and button heights differ #221
Comments
Can you give additional details? What browser/ os are you using? I tried Chrome, Firefox - latest, IE 7 - 10 on windows and I cannot reproduce the error. I ran the tests on http://jsfiddle.net/SE7xf/embedded/result/ |
I forgot something important: body {
font-family: 'Open Sans', sans-serif;
} Here's the updated fiddle: http://jsfiddle.net/SE7xf/1/embedded/result/ |
I found a solution, but I don't know how valid it is. I my overrides file I have the following: .pure-g [class *="pure-u"], html, button, input, select, textarea {
font-family: 'Open Sans', sans-serif;
} This seems to be doing the trick. |
a better solution is: .pure-button { font-family: inherit; } |
Multumesc mult. ;) |
@kitsched n-ai pentru ce |
Hello,
I'm trying to create a form with a skip link right next to the submit button, and I only managed something as shown below:
I'm using the following HTML:
The problem is, as you can see, that the link (Skip) is taller than the Submit button, even if they have the same class applied. I would like both of them to have the same height.
Or am I doing something wrong?
The text was updated successfully, but these errors were encountered: