github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/ui/app/styles/components/authorization.scss (about) 1 .authorization-page { 2 3 .sign-in-methods { 4 h3, p { 5 margin-bottom: 1.5rem; 6 } 7 8 .sso-auth-methods { 9 display: flex; 10 flex-flow: wrap; 11 gap: 0.5rem; 12 } 13 } 14 15 .status-notifications { 16 &.is-half { 17 width: 50%; 18 } 19 margin-bottom: 1.5rem; 20 } 21 22 .or-divider { 23 display: block; 24 width: 100%; 25 text-align: center; 26 margin: 2rem 0; 27 height: 2rem; 28 29 &:before { 30 border-bottom: 1px solid $ui-gray-200; 31 position: relative; 32 top: 50%; 33 content: ""; 34 display: block; 35 width: 100%; 36 height: 0px; 37 } 38 39 span { 40 color: $ui-gray-700; 41 background-color: white; 42 padding: 0 1rem; 43 text-transform: uppercase; 44 position: relative; 45 height: 100%; 46 align-content: center; 47 display: inline-grid; 48 } 49 } 50 }