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/lab/LabText/styles.module.scss
2021-03-30 18:00:59 +07:00

23 lines
446 B
SCSS

@import "~/styles/variables.scss";
.wrap {
padding: 0 $lab_gap;
line-height: 1.3em;
@include tablet {
padding: 0 $lab_gap_mobile;
position: relative;
max-height: 100vh;
overflow: hidden;
&::after {
content: ' ';
position: absolute;
background: linear-gradient(transparentize($lab_post_bg, 1), $lab_post_bg 80%);
bottom: 0;
left: auto;
width: 100%;
height: 100px;
}
}
}