Skip to content

Commit

Permalink
[PLAY-1700] Bug - Remove Default Padding in Section Separator When Ch…
Browse files Browse the repository at this point in the history
…ildren are Passed (#4029)

**What does this PR do?** 
Removes the default padding for all children in the section separator,
except for the caption kit.


**Screenshots:**

Before Change:
![Screenshot 2024-12-18 at 3 33
41 PM](https://github.com/user-attachments/assets/90328cf9-9cae-4766-9791-e13c2e792814)

After Change:
![Screenshot 2024-12-18 at 3 34
27 PM](https://github.com/user-attachments/assets/87558032-44c0-4374-b70a-43eb7a4386ef)


#### Checklist:
- [x] **LABELS** Add a label: `enhancement`, `bug`, `improvement`, `new
kit`, `deprecated`, or `breaking`. See [Changelog &
Labels](https://github.com/powerhome/playbook/wiki/Changelog-&-Labels)
for details.
- [x] **DEPLOY** I have added the `milano` label to show I'm ready for a
review.
  • Loading branch information
Lsimmons98 authored Jan 3, 2025
1 parent 9800773 commit b466034
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ $section_colors_dark: (
align-items: center;
position: relative;
span {
padding: 0 $space_xs;
padding: 0;
display: flex;
[class*="pb_caption_kit"] {
padding: 0 $space_xs;
}
}
&::before {
content: "";
Expand Down

0 comments on commit b466034

Please sign in to comment.