life-towers/src/app/components/modal/modals/create-block/create-block.component.scss
schmelczerandras 420cd788c4 Reformat code
2019-08-24 15:25:43 +02:00

29 lines
462 B
SCSS

@import '../../../../../styles';
:host {
@include card();
box-shadow: $shadow;
width: 66vw;
max-width: 400px;
@media (max-width: $mobile-width) {
width: 300px;
}
box-sizing: border-box;
padding: var(--large-padding);
position: relative;
@include inner-spacing(var(--large-padding));
.header {
@include center-child();
.exit {
position: absolute;
left: var(--large-padding);
@include exit();
}
}
}