1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00
vault-frontend/src/components/node/Comment/styles.scss
Fedor Katurov 2673722af7 added date
2019-10-12 18:35:02 +07:00

47 lines
738 B
SCSS

@import 'flexbin/flexbin.scss';
.text {
// @include outer_shadow();
padding: $gap;
font-weight: 300;
font: $font_16_regular;
min-height: $comment_height;
box-sizing: border-box;
position: relative;
b {
font-weight: 600;
}
}
.date {
position: absolute;
bottom: 0;
right: 0;
font: $font_12_regular;
color: transparentize($color: white, $amount: 0.8);
padding: 2px 4px;
border-radius: 0 0 $radius 0;
}
.images {
@include flexbin(240px, 5px);
img {
border-radius: $radius;
}
}
.audios {
& > div {
@include outer_shadow();
height: $comment_height;
border-radius: $radius;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
}