Skip to content
Snippets Groups Projects
expiredConsentModal.scss 433 B
Newer Older
  • Learn to ignore specific revisions
  • @import 'src/styles/base/color';
    
    
    .expired-consent-modal {
      .icon-main {
        display: flex;
        svg {
          margin: auto;
        }
      }
      .title {
        text-align: center;
        &.electricity {
          color: $elec-color;
        }
        &.gas {
          color: $gas-color;
        }
      }
      .text1 {
        color: $grey-bright;
        margin: 1rem 0;
      }
      .buttons {
        display: flex;
        button.btn-secondary-positive {
          margin-right: 1rem;
        }
      }
    }