Skip to content
Snippets Groups Projects
consents.module.scss 1.69 KiB
Newer Older
  • Learn to ignore specific revisions
  • Guilhem CARRON's avatar
    Guilhem CARRON committed
    @import '../../styles/config/colors';
    @import '../../styles/config/layout';
    @import '../../styles/config/breakpoints';
    @import '../../styles/config/typography';
    
    .header {
      height: $small-nav-height !important;
    }
    .content {
      padding-top: $small-nav-height !important;
      margin-top: 1rem !important;
      background: #121212;
      min-height: 100vh;
      background: $dark-bg;
      min-height: 100vh;
    }
    .searchField {
      max-width: 750px;
      width: 100%;
      display: flex;
      align-items: flex-end;
      .inputGroup {
        color: $text-grey;
        font-size: 1rem;
        margin-right: 2rem;
        label {
          font-weight: 700;
          display: block;
          margin-bottom: 0.5rem;
        }
        input {
          box-sizing: border-box;
          background: transparent;
          border: 1px solid $text-dark;
          border-radius: 4px;
          height: 40px;
          padding: 0 0.5rem;
          width: 500px;
    
          &:disabled {
            opacity: 0.8;
            cursor: not-allowed;
          }
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
        }
      }
    }
    @include customCheckBox(1.45rem);
    .footerButtons {
      margin: auto;
      padding: 1.5rem 0;
      width: fit-content;
      display: flex;
      justify-content: center;
      align-items: center;
      .btnSelection {
        position: relative;
        span {
          position: absolute;
          font-size: 1rem;
          padding-top: 4px;
          right: -14px;
          top: -14px;
          width: 26px;
          height: 26px;
          border-radius: 50%;
          display: block;
          background: $grey-dark;
          border: 1px solid $text-dark;
        }
      }
    }
    .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;
      }
    }