Skip to content
Snippets Groups Projects
expiredConsentModal.scss 452 B
@import 'src/styles/base/color';

.expired-consent-modal {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: $grey-bright;
  text-align: center;

  .icon-main {
    display: flex;
    svg {
      margin: auto;
    }
  }

  .title {
    text-align: center;
    &.electricity {
      color: $elec-color;
    }
    &.gas {
      color: $gas-color;
    }
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}