Skip to content
Snippets Groups Projects
DownloadModal.module.scss 479 B
Newer Older
  • Learn to ignore specific revisions
  • @import '../../styles/config/colors';
    
    .modalContent {
      padding: 0 1rem;
      text-align: center;
      font-size: 0.875rem;
      div {
        margin: 0.875rem 0;
      }
      .modalTitle {
        font-size: 1rem;
        font-weight: 700;
        color: $gold;
      }
      .text1 {
        color: $text-grey;
      }
      .text2 {
        color: $text-dark;
      }
    
      .buttons {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    
        button {
          margin: 0;
        }
      }
    }