Skip to content
Snippets Groups Projects
imagePicker.scss 581 B
Newer Older
  • Learn to ignore specific revisions
  • @import '../../styles/config/colors';
    @import '../../styles/config/breakpoints';
    
    .image-picker {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
      @media screen and (max-width: $width-tablet) {
    
        .ecogesture-image {
          max-width: 80px;
          max-height: 80px;
        }
      }
    }
    .ecogesture-image {
      display: block;
      box-sizing: border-box;
      border: solid 1px transparent;
      padding: 0.5rem;
      transition: all 300ms ease;
      border-radius: 5px;
      background: $dark-light;
      margin: 0.3rem;
    }
    .selected {
      border: solid 1px $gold;
    }
    .footer {
      margin-top: auto;
    }