-
Hey, first time working with your plugin. I’m using tailwind for a new project and I’ve noticed when your plugin is enabled there’s a big CSS conflict when using grid and it’s breaking all my templates in the WordPress editor.
You’ve got .grid set to equal display: flex and it’s affecting WordPress editor block CSS. It looks like you’ve got unique namespaced class names for just about everything except grid.
I’ve added a class to work around it at the moment but I’m guessing this could be somewhat problematic for other people if they have used grid for display: grid in there builds.
There’s this in content-ai-page.css
#rank-math-pro-cta .rank-math-cta-header,#rank-math-pro-cta .rank-math-cta-body,.grid {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap
}as well as another .grid class that is applying spacing to all my blocks using grid.
.grid {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
gap: .9375rem
}Hope this helps
The ticket ‘CSS conflicts in WordPress editor’ is closed to new replies.