mirror of https://github.com/zulip/zulip.git
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:
parent
c50206b824
commit
5cc331b93f
|
@ -126,11 +126,7 @@ a.no-underline:hover {
|
|||
}
|
||||
|
||||
.field {
|
||||
margin: 10px 10px;
|
||||
margin: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.field + .field {
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue