U4-7721 Specify margin 0 for buttons

On Safari input elemnts have 1px margin which use to make customise and
install buttons not aligned
This commit is contained in:
Stefano Chiodino
2016-11-03 16:02:10 +00:00
parent 88fd5a9623
commit 4cab1c89b4

View File

@@ -253,6 +253,9 @@ input[type="submit"].btn {
*padding-top: 1px;
*padding-bottom: 1px;
}
// Safari defaults to 1px for input. Ref U4-7721.
margin: 0px;
}