Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 428 Bytes

custom-css.md

File metadata and controls

19 lines (18 loc) · 428 Bytes

Custom CSS

Quill Forms gives you the ability to add custom css easily. To add custom css, you should pass customCSS property to your formObj prop like the following

<Form 
  formObj={{
    ...formObj,
    customCSS: `
      input {
        border: 1px solid #e3e3e3 !important;
        box-shadown: none !important;
        border-radius: 4px !important;
        padding: 8px !important;
      }
    `
  }}
/>