mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 08:55:43 +03:00
* Sign-in page now hides token secret by default (toggleable) and updates components to Helios * General helios-ification * All the notifications get dismissal buttons * token-details grid for spacing
66 lines
1.0 KiB
SCSS
66 lines
1.0 KiB
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.authorization-page {
|
|
.sign-in-methods {
|
|
h3,
|
|
p {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.sso-auth-methods {
|
|
display: flex;
|
|
flex-flow: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.status-notifications {
|
|
&.is-half {
|
|
width: 50%;
|
|
}
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.token-details {
|
|
display: grid;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.or-divider {
|
|
display: block;
|
|
width: 100%;
|
|
text-align: center;
|
|
margin: 2rem 0;
|
|
height: 2rem;
|
|
|
|
&:before {
|
|
border-bottom: 1px solid $ui-gray-200;
|
|
position: relative;
|
|
top: 50%;
|
|
content: '';
|
|
display: block;
|
|
width: 100%;
|
|
height: 0px;
|
|
}
|
|
|
|
span {
|
|
color: $ui-gray-700;
|
|
background-color: white;
|
|
padding: 0 1rem;
|
|
text-transform: uppercase;
|
|
position: relative;
|
|
height: 100%;
|
|
align-content: center;
|
|
display: inline-grid;
|
|
}
|
|
}
|
|
|
|
.control.with-jwt-selector {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
}
|