♻️ Make Separator component more generic

This commit is contained in:
Philipp Stracker 2024-11-21 17:41:49 +01:00
parent 65814f51e9
commit 3fa823ee02
No known key found for this signature in database
4 changed files with 35 additions and 26 deletions

View file

@ -2,13 +2,22 @@
display: flex;
align-items: center;
&__space,
&__line {
height: 1px;
background-color: $color-gray-600;
margin: 0;
display: block;
width: 100%;
}
&__line {
background-color: $color-gray-600;
height: 1px;
}
&__space {
margin-bottom: 48px;
}
&__text {
color: $color-gray;
@include font(12, 24, 500, 0.8px);

View file

@ -20,14 +20,6 @@
margin: 0 0 16px 0;
}
.ppcp-r-page-welcome-mode-separator {
margin: 0 0 48px 0;
.ppcp-r-separator__line {
background-color: $color-gray-300;
}
}
.components-base-control__field {
margin: 0 0 24px 0;
}