add bottom borders for errors and warnings in console

This commit is contained in:
Reimar 2025-10-17 11:18:58 +02:00
parent 0c8fdb7e18
commit 9d1750d281

View File

@ -153,7 +153,13 @@ div#buttons button {
border-color: #fbc02d; border-color: #fbc02d;
} }
#console p + .error, #console .error + p { #console p.warn:last-child,
#console p.error:last-child {
border-bottom-style: solid;
border-bottom-width: 1px;
}
#console p + .error, #console .error + p, #console .error:last-child {
border-color: #d32f2f; border-color: #d32f2f;
} }