Improve spacing for ordered lists and status messages

This commit is contained in:
Dennis Reimann 2020-07-08 19:18:04 +02:00
parent aeb90a3674
commit f8e3b62edf
No known key found for this signature in database
GPG key ID: 5009E1797F03F8D0
2 changed files with 5 additions and 1 deletions

View file

@ -4,7 +4,7 @@
@if (parsedModel != null)
{
<div class="alert alert-@parsedModel.SeverityCSS @(parsedModel.AllowDismiss? "alert-dismissible":"" )" role="alert">
<div class="alert alert-@parsedModel.SeverityCSS @(parsedModel.AllowDismiss? "alert-dismissible":"" ) mb-5" role="alert">
@if (parsedModel.AllowDismiss)
{
<button type="button" class="close" data-dismiss="alert" aria-label="Close">

View file

@ -47,6 +47,10 @@ a {
transition-property: background, color;
}
ol {
padding-left: 1.125em;
}
ul {
padding-left: 1em;
}