mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Auto merge of #11540 - taravancil:input-text-size, r=mbrubeck
Change the font-size property for input and textarea Change the `font-size` property for `input` and `textarea` from 0.7em to 0.8333em. - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #11529 (github issue number if applicable). - [ ] There are tests for these changes OR - [X] These changes do not require tests because the issue has the label `C-has-test` Forgive me if I'm wrong; this is my first time contributing to Servo! <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11540) <!-- Reviewable:end -->
This commit is contained in:
commit
592842ccc3
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ input {
|
|||
border: solid lightgrey 1px;
|
||||
color: black;
|
||||
font-family: sans-serif;
|
||||
font-size: 0.7em;
|
||||
font-size: 0.8333em;
|
||||
white-space: nowrap;
|
||||
text-align: left;
|
||||
line-height: 1.8;
|
||||
|
@ -23,7 +23,7 @@ textarea {
|
|||
border: solid lightgrey 1px;
|
||||
color: black;
|
||||
font-family: sans-serif;
|
||||
font-size: 0.7em;
|
||||
font-size: 0.8333em;
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue