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-22 11:09:38 +07:00

21 lines
385 B
SCSS

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