open-vault/ui/app/styles/components/empty-state.scss
Angel Garbarino 1394187eb2
UI Add test and clean up for DBSE (#10993)
* clean up

* add test
2021-02-24 11:23:58 -07:00

54 lines
941 B
SCSS

.empty-state {
align-items: center;
color: $grey;
background: $ui-gray-010;
display: flex;
justify-content: center;
padding: $spacing-xxl $spacing-s;
box-shadow: 0 -2px 0 -1px $ui-gray-300;
}
.empty-state-content {
max-width: 320px;
}
.empty-state-title {
color: $grey;
font-size: $size-4;
font-weight: $font-weight-semibold;
line-height: 1.2;
margin-bottom: $spacing-xs;
}
.empty-state-subTitle {
font-size: $size-7;
margin-top: -10px;
padding-bottom: $spacing-s;
}
.empty-state-message.has-border-bottom-light {
padding-bottom: $spacing-s;
}
.empty-state-actions {
margin-top: $spacing-xs;
a,
.link,
a:not(.button):not(.file-delete-button):not(.tag) {
color: $blue;
font-size: $size-8;
font-weight: $font-weight-semibold;
text-decoration: none;
}
> * + * {
margin-left: $spacing-s;
}
}
.empty-state-icon > .hs-icon {
float: left;
margin-right: $spacing-xs;
}