upmostly / modali

A delightful modal dialog component for React, built from the ground up to support React Hooks.
213 stars 21 forks source link

When { centered: true } onOverlayClicked function is not wroking. #40

Open rommelmamedov opened 4 years ago

Windynik commented 4 years ago

Can confirm, this is a bug.

iltimasd commented 3 years ago

To those who stumble on this bug, until @lexcode gets their PR merged you can add this to your global CSS to make all modals centered and retain onOverlayClicked functionality

.modali-wrapper {
  top: 0 !important;
  display: flex !important;
  align-items: center;
}