openreplay/frontend/app/components/ui/NoContent/noContent.module.css
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

59 lines
1 KiB
CSS

.wrapper {
margin: auto;
width: 100%;
text-align: center;
min-height: 100px;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
color: $gray-medium;
font-weight: 300;
transition: all 0.2s;
padding-top: 40px;
&.small {
& .title {
font-size: 20px !important;
}
& .subtext {
font-size: 16px;
}
}
}
.title {
font-size: 32px;
margin-bottom: 15px;
}
.subtext {
font-size: 16px;
margin-bottom: 20px;
}
.no-results {
display: block;
margin: auto;
background-image: svg-load(no-results.svg, fill=#CCC);
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
width: 166px;
height: 166px;
margin-bottom: 20px;
}
.empty-state {
display: block;
margin: auto;
background-image: svg-load(empty-state.svg, fill=#CCC);
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
width: 166px;
height: 166px;
margin-bottom: 20px;
}