css: Cleanup CSS corresponding to `.flex-row .field`.

A `.field` element already has left margin set as 10px and setting
left-margin explicitly for a `.field + .field` equal to the same
value is redundant. This rule is removed.

Margin is set as `10px 10px` which can be equivalently written as
`10px`.
This commit is contained in:
Vaibhav 2019-05-23 21:47:46 +05:30 committed by Tim Abbott
parent c50206b824
commit 5cc331b93f
1 changed files with 1 additions and 5 deletions

View File

@ -126,11 +126,7 @@ a.no-underline:hover {
}
.field {
margin: 10px 10px;
margin: 10px;
width: 100%;
}
.field + .field {
margin-left: 10px;
}
}