textbox editor

This commit is contained in:
Kyle
2021-01-23 10:42:14 -08:00
parent 709d75118c
commit 4a51209ad8
4 changed files with 41 additions and 7 deletions

View File

@@ -644,7 +644,7 @@ textarea.input {
text-align: center;
padding: 0.5rem 0;
}
.frame-element-editor {
.frame-element-editor, .textbox-editor {
display: none;
position: fixed;
max-width: calc(100vw - 6rem);
@@ -668,13 +668,13 @@ textarea.input {
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
grid-gap: 1rem;
}
.frame-element-editor.opened {
.frame-element-editor.opened, .textbox-editor.opened {
display: grid;
}
.frame-element-editor > .frame-element-editor-title {
.frame-element-editor > .frame-element-editor-title, .textbox-editor > .textbox-editor-title {
grid-column: 1 / -2;
}
.frame-element-editor > .frame-element-editor-close {
.frame-element-editor > .frame-element-editor-close, .textbox-editor > .textbox-editor-close {
cursor: pointer;
width: auto;
height: auto;