gui: Decrease padding on the panel and modal bodies (#6153)

This allows better viewing when on a condensed screen, and reduces screen real estate slightly.
This commit is contained in:
Domenic Horner 2019-11-13 22:14:00 +08:00 committed by Jakob Borg
parent f80ce17497
commit a5699d40a8

View File

@ -246,6 +246,18 @@ a.toggler:hover {
text-decoration: none;
}
/**
* Panel and Modal body padding decrease
*/
.panel-collapse .panel-body {
padding: 0;
}
.modal-body {
padding: 5px;
}
/**
* Progress bars with centered text
*/
@ -400,4 +412,4 @@ ul.three-columns li, ul.two-columns li {
.btn:not(.panel-heading) + .btn:not(.panel-heading) {
margin-bottom: 1rem;
}
}
}