github.com/hernad/nomad@v1.6.112/ui/app/styles/components/authorization.scss (about)

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  .authorization-page {
     7    .sign-in-methods {
     8      h3,
     9      p {
    10        margin-bottom: 1.5rem;
    11      }
    12  
    13      .sso-auth-methods {
    14        display: flex;
    15        flex-flow: wrap;
    16        gap: 0.5rem;
    17      }
    18    }
    19  
    20    .status-notifications {
    21      &.is-half {
    22        width: 50%;
    23      }
    24      margin-bottom: 1.5rem;
    25    }
    26  
    27    .or-divider {
    28      display: block;
    29      width: 100%;
    30      text-align: center;
    31      margin: 2rem 0;
    32      height: 2rem;
    33  
    34      &:before {
    35        border-bottom: 1px solid $ui-gray-200;
    36        position: relative;
    37        top: 50%;
    38        content: '';
    39        display: block;
    40        width: 100%;
    41        height: 0px;
    42      }
    43  
    44      span {
    45        color: $ui-gray-700;
    46        background-color: white;
    47        padding: 0 1rem;
    48        text-transform: uppercase;
    49        position: relative;
    50        height: 100%;
    51        align-content: center;
    52        display: inline-grid;
    53      }
    54    }
    55  
    56    .control.with-jwt-selector {
    57      display: flex;
    58      gap: 0.5rem;
    59    }
    60  }