Created
January 23, 2021 05:08
-
-
Save AnteaterKit/796a37cfdad7c1c83b47a9d59c466e11 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="resizable"> | |
<div class="resizable__vertical"> | |
<div class="resizable__vertical__horisontal"> | |
{{width}} | |
<div class="resizable__vertical__horisontal__content"> | |
<ng-content></ng-content> | |
</div> | |
<div *ngIf='resizeDirection === "horizontal"' class="bar resizable__vertical__horisontal__barRight" (resizable)="onResize($event)"></div> | |
</div> | |
<div *ngIf='resizeDirection === "vertical"' id='bar-vertical' class="bar resizable__vertical__barBotton" (resizable)="onResize($event)"></div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment