mirror of https://github.com/Squidex/squidex.git
3 changed files with 32 additions and 1 deletions
@ -1 +1,5 @@ |
|||
<textarea class="form-control" #editor></textarea> |
|||
<div #container> |
|||
<div #inner [class.fullscreen]="isFullscreen"> |
|||
<textarea class="form-control" #editor></textarea> |
|||
</div> |
|||
</div> |
|||
@ -1,6 +1,15 @@ |
|||
@import '_mixins'; |
|||
@import '_vars'; |
|||
|
|||
$background: #fff; |
|||
|
|||
.editor { |
|||
height: 30rem; |
|||
} |
|||
|
|||
.fullscreen { |
|||
@include fixed(0, 0, 0, 0); |
|||
border: 0; |
|||
background: $background; |
|||
z-index: 100000; |
|||
} |
|||
Loading…
Reference in new issue