Skip to content
Snippets Groups Projects
Select Git revision
  • 288360ea9ed927436d6420a750f01eda013f0397
  • dev default protected
  • 168-pro-connect
  • master protected
  • nestjs11
  • renovate/ghcr.io-browserless-chromium-2.x
  • renovate/major-nest-monorepo
  • renovate/luxon-3.x
  • renovate/gouvfr-anct-timetable-to-osm-opening-hours-2.x
  • renovate/major-typescript-eslint-monorepo
  • renovate/npm-11.x
  • renovate/mysql-9.x
  • renovate/mongo-express-1.x
  • renovate/major-jest-monorepo
  • renovate/tsconfig-paths-4.x
  • renovate/jest-junit-16.x
  • renovate/express-5.x
  • renovate/elastic-elasticsearch-8.x
  • renovate/ghost-5.x
  • renovate/elasticsearch-7.x
  • renovate/devdependencies-(non-major)
  • v4.1.1
  • v4.1.0
  • v4.0.3
  • v4.0.1
  • v4.0.0
  • v3.4.3
  • v3.4.2
  • v3.4.1
  • v3.4.0
  • v3.3.1
  • v3.3.0
  • v3.2.0
  • v3.1.0
  • v3.0.1
  • v3.0.0
  • v2.5.0
  • v2.4.2
  • v2.4.1
  • v2.4.0
  • v2.3.2
41 results

structures.controller.ts

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;
        }
      }
    }