-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE REQUEST] - Divider/Separator Component #690
Comments
Set to 3.0.3 |
I dont know why my divider not show line? I have checked in browser console, generated this html
and in css console .p-divider-dashed.p-divider-horizontal:before {
border-top-style: dashed;
} I dont know why this css show in linethrough |
For temporary solution, I override css style in component .p-divider-solid.p-divider-horizontal:before {
border-top-style: solid !important;
}
.p-divider-dashed.p-divider-horizontal:before {
border-top-style: dashed !important;
}
.p-divider-solid.p-divider-vertical:before {
border-left-style: solid !important;
} |
I ran into this issue too. Thankfully, the css workaround helped - but I think it should still be investigated. |
Indicator to separate content.
Example: AntD.
The text was updated successfully, but these errors were encountered: