1
0
Fork 0
blog/src/components/Post/PostTeaser.module.scss

30 lines
510 B
SCSS
Raw Normal View History

2018-11-18 19:34:55 +01:00
@import 'variables';
.postTitle {
2019-10-02 13:35:50 +02:00
display: inline-block;
margin-top: $spacer / 4;
margin-bottom: 0;
font-size: $font-size-small;
line-height: $line-height-small;
color: $brand-grey-light;
padding-left: 0.2rem;
padding-right: 0.2rem;
transition: color 0.2s ease-out;
2018-11-18 19:34:55 +01:00
2019-10-02 13:35:50 +02:00
@media (min-width: $screen-md) {
font-size: $font-size-base;
}
2018-11-18 19:34:55 +01:00
}
.empty {
2019-10-02 13:35:50 +02:00
height: 100%;
min-height: 80px;
display: flex;
align-items: center;
padding: $spacer / 4;
2018-11-18 19:34:55 +01:00
2019-10-02 13:35:50 +02:00
.postTitle {
margin-top: 0;
}
2018-11-18 19:34:55 +01:00
}