Skip to content
Snippets Groups Projects
modal.scss 654 B
Newer Older
  • Learn to ignore specific revisions
  • Guilhem CARRON's avatar
    Guilhem CARRON committed
    @import '../../styles/config/colors';
    
    .modal-bg {
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      height: 100vh;
      left: 0;
      position: fixed;
      top: 0;
      width: 100%;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
      z-index: 9999;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
    
      .modal-container {
        align-items: center;
        display: flex;
        justify-content: center;
        overflow-y: auto;
        width: 100%;
      }
      .modal-content {
        background: $grey-dark;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(43, 45, 92, 0.25),
          0px 2px 4px rgba(43, 45, 92, 0.25);
        padding: 1rem;
        position: relative;
        max-width: 350px;
        width: 100%;
      }
      .buttons {
        display: flex;
        justify-content: center;
      }
    }