1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/containers/editors/NewEditorBlockVideo/styles.module.scss
2021-03-26 15:50:26 +07:00

33 lines
507 B
SCSS

@import "src/styles/variables";
.wrap {
background-color: red;
}
.preview {
padding-top: 56.25%;
position: relative;
border-radius: $radius;
background: 50% 50% no-repeat;
background-size: cover;
}
.input_wrap {
display: flex;
align-items: center;
justify-content: center;
}
.input {
flex: 1 0 50%;
padding: $gap;
background: lighten($content_bg, 4%);
border-radius: $radius $radius 0 0;
input {
text-align: center;
}
&:global(.active) {
background: $red;
}
}