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:
parent
4f66a52050
commit
3970eb5add
2 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
2
core/client/docs/dist/css/ghost-ui.min.css
vendored
2
core/client/docs/dist/css/ghost-ui.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue