Skip to content
Snippets Groups Projects
Select Git revision
  • 90ea18e9ad3e38185046f0b283ebdce2743e9b85
  • dev default protected
  • renovate/cozy-realtime-5.x
  • renovate/devdependencies-(non-major)
  • renovate/copy-webpack-plugin-13.x
  • renovate/major-react-monorepo
  • renovate/couchdb-3.x
  • renovate/cozy-device-helper-3.x
  • renovate/cozy-flags-4.x
  • renovate/eslint-config-prettier-10.x
  • renovate/major-react-router-monorepo
  • renovate/major-typescript-eslint-monorepo
  • renovate/sass-loader-16.x
  • renovate/eslint-plugin-testing-library-7.x
  • renovate/cozy-scripts-8.x
  • renovate/cozy-harvest-lib-9.x
  • renovate/cozy-client-49.x
  • build-test protected
  • build-dev protected
  • lint/testing-libraby-plugin
  • build protected
  • v3.1.1
  • v3.1.0
  • v3.0.0
  • v2.8.0
  • v2.7.2
  • v2.7.1
  • v2.7.0
  • v2.6.0
  • v2.5.1
  • v2.5.0
  • v2.4.0
  • v2.3.1
  • v2.3.0
  • v2.2.2
  • v2.2.1
  • v2.2.0
  • v2.1.1
  • v2.1.0
  • v2.0.2
  • v2.0.1
41 results

ecogestureSelectionDetail.scss

Blame
  • ecogestureSelectionDetail.scss 1.32 KiB
    @import 'src/styles/base/color';
    @import 'src/styles/base/breakpoint';
    
    .eg-selection-detail-container {
      display: flex;
      flex-direction: column;
      text-align: center;
      color: $grey-bright;
      padding: 0 1.5rem;
      flex: 1;
      max-height: calc(100vh - 60px - 72px - 0px);
    
      .content {
        display: flex;
        gap: 0.5rem;
        flex-direction: column;
        flex: 1;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
    
        .title {
          color: $soft-grey;
          font-weight: 700;
        }
    
        .iconContainer {
          height: 240px;
        }
    
        .showMore {
          text-align: center;
          text-decoration: underline;
          margin-top: 1rem;
          cursor: pointer;
        }
    
        .longDescription {
          margin: 1rem 0.5rem;
          text-align: left;
        }
      }
      .buttons {
        margin: 1rem 0;
        display: flex;
        gap: 0.5rem;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        button.btn-secondary-negative {
          margin: 0;
          padding: 0.75rem 0.25rem;
          height: 7.375rem;
          border: 1px solid $grey-bright;
          border-radius: 0.25rem;
          &:focus,
          &.active,
          &:disabled,
          &:hover {
            background: transparent;
          }
    
          span {
            flex-direction: column;
            color: $grey-bright;
          }
        }
        button.noFocus {
          background: transparent;
        }
      }
    }