Skip to content
Snippets Groups Projects
Select Git revision
  • 3c03523f73c2dd92f7167affad333656cd563ef6
  • upgrade-stack-version default
  • renovate/github.com-spf13-viper-1.x
  • renovate/github.com-go-redis-redis-v8-9.x
  • renovate/github.com-spf13-cobra-1.x
  • renovate/github.com-ohler55-ojg-1.x
  • renovate/github.com-stretchr-testify-1.x
  • renovate/golang-1.x
  • renovate/eslint-plugin-prettier-5.x
  • renovate/ubuntu-24.x
  • renovate/github.com-yuin-goldmark-1.x
  • renovate/github.com-masterminds-semver-v3-3.x
  • renovate/prettier-3.x
  • renovate/github.com-ncw-swift-v2-2.x
  • renovate/github.com-labstack-echo-v4-4.x
  • renovate/github.com-appleboy-go-fcm-1.x
  • renovate/eslint-config-cozy-app-6.x
  • feat/stack-pipeline
  • master protected
  • 1.5.8
  • 1.5.7
  • 1.5.6
  • 1.5.5
  • 1.5.4
  • 1.5.3
  • 1.5.2
  • 1.5.1
  • 1.5.0
  • 1.4.42
  • 1.4.41
  • 1.4.40
  • 1.4.39
  • 1.4.38
  • 1.4.37
  • 1.4.36
  • 1.4.35
  • 1.4.34
  • 1.4.33
  • 1.4.32
39 results

Dockerfile

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