1
0
mirror of https://github.com/flarum/core.git synced 2025-07-19 07:41:22 +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 {
text-align: center;
.FormControl, .Button {
.FormControl[type=text],
.FormControl[type=email],
.FormControl[type=password],
.Button {
margin: 0 auto;
text-align: center;
height: 50px;
@@ -20,6 +23,9 @@
.Form-group {
margin-bottom: 12px;
}
.checkbox {
text-align: left;
}
}
.Form-group > label {