avatar

ShīnChvën ✨

Effective Accelerationism

Powered by Druid

Override Properties of a CSS Class

Sat Nov 16 2019

Third party components sometimes may just not fit in, we can override its perperties to fix it.

.container { // My div to surround third party components

  :global .ant-form-item { // use :global syntax to override properties of the class.
    margin-bottom: 0;
  }
}