Is it possible to override the CSS of blocks? #2292
Unanswered
AdnanKhayyat1
asked this question in
Q&A
Replies: 1 comment 3 replies
-
Hi, Yes, with CSS, like this : .ce-block {
box-shadow: ...;
}
/* or */
.ce-block__content
{
box-shadow: ...;
}
/* or */
.cdx-block {
box-shadow: ...;
} |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi!
I want to add a custom border shadow to every type of block element. I'm currently building an app on React and have EditorJS as part of my npm dependency library. Is there a way to customize the styling of all blocks?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions