Apply consistent border-radius values to .btn + .card classes

This commit is contained in:
billz 2023-12-01 19:30:17 +00:00
parent ff7f1f01b4
commit 3717249f6a

View file

@ -123,8 +123,8 @@ a:focus, a:hover {
border-color: #404040; border-color: #404040;
background-color: #202020; background-color: #202020;
color: #afafaf; color: #afafaf;
border-top-right-radius: 3px; border-top-right-radius: 0.35rem;
border-top-left-radius: 3px; border-top-left-radius: 0.35rem;
font-size: 1.0rem; font-size: 1.0rem;
font-weight: 400; font-weight: 400;
} }
@ -148,7 +148,7 @@ a:focus, a:hover {
.card, .card-body { .card, .card-body {
border-color: #343434; border-color: #343434;
border-radius: 3px; border-radius: 0.35rem;
background-color: #141414; background-color: #141414;
} }
@ -261,7 +261,7 @@ span.label.label-warning {
[class*="btn"], [class*="btn"]:focus, [class*="btn"]:disabled { [class*="btn"], [class*="btn"]:focus, [class*="btn"]:disabled {
background-color: #202020; background-color: #202020;
border-color: #404040; border-color: #404040;
border-radius: 3px; border-radius: 0.35rem;
color: #d2d2d2; color: #d2d2d2;
} }