Skip to content
Snippets Groups Projects
consents.module.scss 1.26 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';
    
    .content {
    
      padding: 1rem;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
    }
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
    .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);
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
    .footerButtons {
    
      padding: 1rem 0;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
      display: flex;
    
      gap: 1rem;
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translate(-25%);
    
      button {
        margin: 0;
      }
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
      .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;
        }
      }
    }