github.com/argoproj/argo-cd@v1.8.7/ui/src/app/settings/components/settings-overview/settings-overview.scss (about)

     1  @import 'node_modules/argo-ui/src/styles/config';
     2  
     3  .settings-overview {
     4      &__redirect-panel {
     5          margin: 18px 0;
     6      }
     7  
     8      
     9      &__redirect-panel {
    10          position: relative;
    11          padding: 20px;
    12          font-size: 16px;
    13          background-color: white;
    14          border-radius: 4px;
    15          box-shadow: 1px 2px 3px rgba(#000, .1);
    16          cursor: pointer;
    17  
    18          &:hover {
    19              background-color: $argo-color-teal-1;
    20          }
    21  
    22          &__ico {
    23              position: relative;
    24              top: -5px;
    25              float: left;
    26              margin-right: 10px;
    27              font-size: 1.6em;
    28              color: $argo-success-color;
    29          }
    30  
    31          &__content {
    32              overflow: hidden;
    33              width: auto;
    34              padding-right: 30px;
    35          }
    36  
    37          &__title {
    38              font-size: 1.2em;
    39              color: $argo-color-teal-6;
    40          }
    41  
    42          &__description {
    43              font-size: .8125em;
    44              color: $argo-color-gray-6;
    45          }
    46  
    47          &__arrow {
    48              position: absolute;
    49              top: 50%;
    50              right: 30px;
    51              transform: translateY(-50%);
    52              font-size: 1.4em;
    53              color: $argo-color-gray-6;
    54          }
    55      }
    56  }