ui: make hr padding match __mX helpers

$line-height-computed only appears once in scaffolding template
so just switch it to the hardcoded defaults of the __mX class
stylers.  This is done to match MVC forms between use of consistent
margin and horizontal lines as dividers as seen on the MVC logging
settings page.
This commit is contained in:
Franco Fichtner 2024-03-04 08:44:10 +01:00
parent c2260f6a47
commit f87bc9a105
2 changed files with 4 additions and 4 deletions

View File

@ -111,8 +111,8 @@ img {
// Horizontal rules
hr {
margin-top: $line-height-computed;
margin-bottom: $line-height-computed;
margin-top: 15px;
margin-bottom: 15px;
border: 0;
border-top: 1px solid $hr-border;
}

View File

@ -1245,8 +1245,8 @@ img {
}
hr {
margin-top: 20px;
margin-bottom: 20px;
margin-top: 15px;
margin-bottom: 15px;
border: 0;
border-top: 1px solid #eeeeee;
}