1
0
mirror of https://github.com/flarum/core.git synced 2025-07-21 00:31:17 +02:00

Align checkboxes and textareas to the left in centered forms

This commit is contained in:
Toby Zerner
2015-11-04 12:54:17 +10:30
parent 2e5bbdd34c
commit 6a4023bbe7

View File

@@ -9,7 +9,10 @@
.Form--centered { .Form--centered {
text-align: center; text-align: center;
.FormControl, .Button { .FormControl[type=text],
.FormControl[type=email],
.FormControl[type=password],
.Button {
margin: 0 auto; margin: 0 auto;
text-align: center; text-align: center;
height: 50px; height: 50px;
@@ -20,6 +23,9 @@
.Form-group { .Form-group {
margin-bottom: 12px; margin-bottom: 12px;
} }
.checkbox {
text-align: left;
}
} }
.Form-group > label { .Form-group > label {