Use overflow: auto instead of overflow: scroll
This commit is contained in:
parent
4c9f1af0ab
commit
cd3d911ca0
2 changed files with 6 additions and 3 deletions
|
@ -6,10 +6,14 @@
|
||||||
textarea {
|
textarea {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
background: none;
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
color: inherit;
|
|
||||||
resize: none;
|
resize: none;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
color: inherit;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
|
@ -24,7 +28,6 @@
|
||||||
width: 3rem;
|
width: 3rem;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
|
||||||
background: #2196F3;
|
background: #2196F3;
|
||||||
|
|
||||||
color: white;
|
color: white;
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
overflow: scroll;
|
overflow: auto;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue