Disable shadows of all components with scss?

I would like to know if there is a way to disable all shadows of all components at once by scss.
I imported all the bootstrap scss into the project, but it’s too complicated to disable the shadows individually, so it would be great to do it all in one go.

You can try this
CSS

*, *::before, *::after {
  box-shadow: none !important;
}
3 Likes

It worked perfectly, thank you very much, I will save this tip for general modifications in the future.