Merge pull request #166 from mertsafak/input-select-same-height

set selects' height to 2.35rem to prevent inconsistent behaviour
This commit is contained in:
Thomas Cazade 2018-11-01 18:33:20 +01:00 committed by GitHub
commit a5123877ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 3 deletions

View file

@ -48,7 +48,7 @@ You can also play with original, source files, written in SCSS, in `src/`.
## Documentation
You can view the docs at [getpapercss.com](https://www.getpapercss.com). Those are directly from the `master` branch, this means thoses features are stable and ready to be used in your project.
You can view the docs at [getpapercss.com](https://www.getpapercss.com). Those are directly from the `master` branch, this means those features are stable and ready to be used in your project.
You can also view the develop branch at [develop.getpapercss.com](https://develop.getpapercss.com), this include new features that are coming soon in master branch. Be warned, a feature in develop can be removed without any prevention.

View file

@ -3,7 +3,7 @@ title: Buttons
description: PaperCSS Buttons
---
Insprired by [Imprefect Buttons](https://codepen.io/tmrDevelops/pen/VeRvKX)
Inspired by [Imperfect Buttons](https://codepen.io/tmrDevelops/pen/VeRvKX)
<button class="btn-large">Large</button>
<button>Default</button>
@ -22,7 +22,7 @@ Insprired by [Imprefect Buttons](https://codepen.io/tmrDevelops/pen/VeRvKX)
#### Code:
```html
<p>Insprired by <a href="https://codepen.io/tmrDevelops/pen/VeRvKX" target="_blank">Imprefect Buttons</a></p>
<p>Inspired by <a href="https://codepen.io/tmrDevelops/pen/VeRvKX" target="_blank">Imperfect Buttons</a></p>
<button class="btn-large">Large</button>
<button>Default</button>
<button class="btn-small">Small</button>

View file

@ -23,6 +23,10 @@ textarea {
}
}
select {
height: 2.35rem;
}
.disabled {
cursor: not-allowed;
opacity: 0.5;