fix(styles): refine button margin and dropdown shadow spacing
All checks were successful
Build and Deploy Static Site / build (push) Successful in 56s
All checks were successful
Build and Deploy Static Site / build (push) Successful in 56s
Adjusted the CSS selector to more accurately apply margins to specific button elements within card bodies, enhancing layout consistency. Corrected minor formatting issue in the dropdown menu's box-shadow property for improved code readability.
This commit is contained in:
parent
e5f82fdc41
commit
2e2327848f
1 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@ h5 {
|
|||
font-size: x-large;
|
||||
}
|
||||
|
||||
.card-body .btn-primary:not(:first-child) {
|
||||
.card-body :not(p):not(:first-child):not(.dropdown-content):not(.dropdown-toggle-area) {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
|
@ -223,7 +223,7 @@ h5 {
|
|||
position: absolute;
|
||||
background-color: #f9f9f9;
|
||||
min-width: 100%;
|
||||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
||||
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue