github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/web/src/ReactModal.scss (about)

     1  @import "constants";
     2  
     3  .ReactModal__Overlay {
     4    display: flex;
     5    align-items: center;
     6    justify-content: center;
     7    margin-top: -$statusbar-height; // Visually center
     8    background-color: rgba($color-gray-10, $translucent) !important;
     9    z-index: $z-modal;
    10  }
    11  
    12  .ReactModal__Content {
    13    padding: 0;
    14    width: $modal-width;
    15    background-color: $color-white;
    16    color: $color-gray-20;
    17    box-shadow: -10px 10px 0px 0px rgba($color-gray-10, $translucent-ish);
    18  }