github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/ui/app/styles/components/empty-message.scss (about) 1 .empty-message { 2 padding: 1.5rem; 3 background: $white-ter; 4 border-radius: $radius; 5 6 .empty-message-headline { 7 font-size: $size-3; 8 color: $grey; 9 text-align: center; 10 } 11 12 .empty-message-body { 13 padding: 0 20%; 14 text-align: center; 15 color: $grey; 16 17 strong { 18 color: $grey; 19 } 20 21 &:not(:last-child) { 22 margin-bottom: 1rem; 23 } 24 } 25 26 &.is-hollow { 27 background: transparent; 28 } 29 30 .terminal-container { 31 display: flex; 32 justify-content: center; 33 margin-top: 1.25rem; 34 } 35 36 .terminal { 37 background: $grey-lighter; 38 border-radius: $radius; 39 padding: 0.75rem 1rem; 40 41 .prompt { 42 color: $grey; 43 } 44 } 45 }