open-nomad/ui/app/styles/components/empty-message.scss

46 lines
677 B
SCSS
Raw Normal View History

2017-09-30 00:41:12 +00:00
.empty-message {
padding: 1.5rem;
background: $white-ter;
border-radius: $radius;
.empty-message-headline {
font-size: $size-3;
color: $grey;
text-align: center;
}
.empty-message-body {
padding: 0 20%;
text-align: center;
color: $grey;
strong {
color: $grey;
}
&:not(:last-child) {
margin-bottom: 1rem;
}
2017-09-30 00:41:12 +00:00
}
2019-07-25 17:52:59 +00:00
&.is-hollow {
background: transparent;
}
.terminal-container {
display: flex;
justify-content: center;
margin-top: 1.25rem;
}
.terminal {
background: $grey-lighter;
border-radius: $radius;
padding: 0.75rem 1rem;
.prompt {
color: $grey;
}
}
2017-09-30 00:41:12 +00:00
}