Make "Terms of Service" modal scrollable
I'm hopeful this will be fixed in the next version of Bootstrap. See: https://github.com/twitter/bootstrap/issues/849 and https://github.com/twitter/bootstrap/issues/850
This commit is contained in:
parent
f1540fcfb0
commit
064469de68
|
@ -9,11 +9,12 @@ body {
|
||||||
|
|
||||||
h1, h2 {
|
h1, h2 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
margin: 20px 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
margin-bottom: 10px;
|
margin: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
form.form-stacked {
|
form.form-stacked {
|
||||||
|
@ -91,7 +92,6 @@ form input.error:focus, form textarea.error:focus {
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar {
|
.sidebar {
|
||||||
padding-top: 20px;
|
|
||||||
width: 250px;
|
width: 250px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
@ -136,6 +136,11 @@ form input.error:focus, form textarea.error:focus {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.modal {
|
||||||
|
max-height: 500px;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.upcase {
|
.upcase {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue