Add Shadow and Padding

User
wpfFilterTaxNameWrapper

add minimal shadow for this give padding also !

Assistant
Here's a minimal CSS style you can apply to the `.wpfFilterTaxNameWrapper` class to add **padding** and a **subtle shadow**:

.wpfFilterTaxNameWrapper {
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    background-color: #fff; /* Optional: for better shadow visibility */
    border-radius: 6px; /* Optional: smoother look */
}

### Breakdown:
– `padding: 15px;` — Adds internal spacing.
– `box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);` — Adds a soft, minimal shadow.
– `background-color: #fff;` — Ensures the shadow is visible (optional).
– `border-radius: 6px;` — Slightly rounds the corners (optional for modern design).

Let me know if you want a hover effect or different shadow intensity.

Leave a Comment

Your email address will not be published. Required fields are marked *