github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/services/frontend-service/src/ui/components/EnvironmentConfigDialog/EnvironmentConfigDialog.scss (about)

     1  /*This file is part of kuberpult.
     2  
     3  Kuberpult is free software: you can redistribute it and/or modify
     4  it under the terms of the Expat(MIT) License as published by
     5  the Free Software Foundation.
     6  
     7  Kuberpult is distributed in the hope that it will be useful,
     8  but WITHOUT ANY WARRANTY; without even the implied warranty of
     9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    10  MIT License for more details.
    11  
    12  You should have received a copy of the MIT License
    13  along with kuberpult. If not, see <https://directory.fsf.org/wiki/License:Expat>.
    14  
    15  Copyright 2023 freiheit.com*/
    16  .environment-config-dialog {
    17      min-width: 960px;
    18  
    19      div.MuiPaper-root {
    20          background-color: transparent;
    21          border-radius: $environment-config-dialog-outer-border-radius;
    22          overflow-y: inherit;
    23      }
    24      .content-area {
    25          display: flex;
    26      }
    27      .content-right {
    28          max-width: 40%;
    29          margin-left: auto;
    30          display: flex;
    31      }
    32      .content-left {
    33          max-width: 60%;
    34      }
    35      pre {
    36          margin: 24px 10px 24px 47px;
    37          padding: 0 0 10px;
    38          font-family: monospace;
    39          overflow-y: scroll;
    40      }
    41  
    42      .environment-config-dialog-app-bar {
    43          border-radius: $environment-config-dialog-top-border-radius;
    44          background: var(--mdc-theme-primary);
    45          color: var(--mdc-theme-on-primary);
    46          display: flex;
    47          flex-direction: row;
    48          justify-content: space-between;
    49  
    50          .environment-config-dialog-app-bar-data {
    51              margin: 24px 10px 24px 47px;
    52              display: flex;
    53              flex-direction: column;
    54              justify-content: space-between;
    55  
    56              .environment-config-dialog-name {
    57                  text-overflow: wrap;
    58                  @extend .sub-headline1;
    59              }
    60          }
    61  
    62          button.environment-config-dialog-close {
    63              display: flex;
    64              margin: 20px 10px auto;
    65          }
    66      }
    67  }