0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-08 02:52:39 -05:00

Prevent mobile text area editor bottom being but off

Closes #53

- Adds webkit smooth bouncy overflow
- Make height of the textarea slightly short than 100%
This commit is contained in:
Paul Adam Davis 2014-07-04 10:25:53 +01:00
parent 4f66a52050
commit 3970eb5add
2 changed files with 3 additions and 2 deletions

View file

@ -171,7 +171,7 @@
textarea {
border: 0;
width: 100%;
height: 100%;
height: calc(100% - 45px);
max-width: 100%;
margin: 0;
padding: 0;
@ -180,6 +180,7 @@
right: 0;
bottom: 0;
left: 0;
-webkit-overflow-scrolling: touch;
&:focus {
outline: 0;

File diff suppressed because one or more lines are too long