1
0
Fork 0
blog/src/components/Search/SearchResultsEmpty.module.scss

35 lines
541 B
SCSS
Raw Normal View History

2018-11-18 19:54:25 +01:00
@import 'variables';
.empty {
2019-10-02 13:35:50 +02:00
padding-top: 15vh;
display: flex;
justify-content: center;
2018-11-18 19:54:25 +01:00
}
.emptyMessage {
2019-10-02 13:35:50 +02:00
color: $brand-grey-light;
2018-11-18 19:54:25 +01:00
}
.emptyMessageText {
2019-10-02 13:35:50 +02:00
margin-bottom: 0;
position: relative;
2018-11-18 19:54:25 +01:00
2019-10-02 13:35:50 +02:00
&::after {
overflow: hidden;
display: inline-block;
vertical-align: bottom;
animation: ellipsis steps(4, end) 1s infinite;
content: '\2026'; // ascii code for the ellipsis character
width: 0;
position: absolute;
left: 101%;
bottom: 0;
}
2018-11-18 19:54:25 +01:00
}
@keyframes ellipsis {
2019-10-02 13:35:50 +02:00
to {
width: 1rem;
}
2018-11-18 19:54:25 +01:00
}