-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(resize): add native resize capabilities to editor (#65)
* feat(resize): add native resize capabilities to editor instead of using automaticLayout + layout fixes * feat(): deprecate automaticLayout * fix(): make sure context menu doesnt get cut * chore(): add warn message for deprecation of [automaticLayout]
- Loading branch information
Ed Morales
authored
Jun 8, 2019
1 parent
103dc36
commit 02fff50
Showing
2 changed files
with
57 additions
and
25 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
:host { | ||
display:block; | ||
} | ||
.editorContainer { | ||
width:100%; | ||
height:98%; | ||
display: block; | ||
position: relative; | ||
.editorContainer { | ||
position: absolute; | ||
top: 0; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
} | ||
} |
This file contains 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