diff --git a/scss/components/actor/_actor_properties.scss b/scss/components/actor/_actor_properties.scss index cfa631ad..78edeb28 100644 --- a/scss/components/actor/_actor_properties.scss +++ b/scss/components/actor/_actor_properties.scss @@ -26,7 +26,7 @@ &__property-select { width: 100%; - height: var(--input-height); + height: var(--form-field-height); } &__property-multi-input { diff --git a/scss/components/actor/_biography.scss b/scss/components/actor/_biography.scss index fb6b22ec..cf033a71 100644 --- a/scss/components/actor/_biography.scss +++ b/scss/components/actor/_biography.scss @@ -8,10 +8,4 @@ display: grid; grid-template-columns: 1fr 3fr; column-gap: 1em; - height: 100%; -} - -.ds4-biography { - height: 100%; - overflow: hidden; } diff --git a/scss/components/shared/_editor.scss b/scss/components/shared/_editor.scss index 76c8cebf..dead15ce 100644 --- a/scss/components/shared/_editor.scss +++ b/scss/components/shared/_editor.scss @@ -16,38 +16,3 @@ } } } - -// General ProseMirror editor styles -prose-mirror { - height: 100%; - display: flex; - flex-direction: column; - overflow: hidden; - - // Edit mode with editor container - &.active { - .editor-container { - flex: 1; - display: flex; - flex-direction: column; - overflow: hidden; - - .editor-content { - flex: 1; - overflow-y: auto; - min-height: 0; - } - } - } - - // View mode - direct editor-content - &.inactive { - .editor-content { - position: relative; - flex: 1; - overflow-y: auto; - min-height: 0; - inset: auto; - } - } -} diff --git a/scss/components/shared/_form_group.scss b/scss/components/shared/_form_group.scss index 2a3032b3..12687e48 100644 --- a/scss/components/shared/_form_group.scss +++ b/scss/components/shared/_form_group.scss @@ -22,6 +22,6 @@ &__label { flex: 2; - line-height: var(--input-height); + line-height: var(--form-field-height); } } diff --git a/scss/components/shared/_sheet_body.scss b/scss/components/shared/_sheet_body.scss index 0718c6a6..3b19d5ca 100644 --- a/scss/components/shared/_sheet_body.scss +++ b/scss/components/shared/_sheet_body.scss @@ -7,9 +7,4 @@ .ds4-sheet-body { height: 100%; overflow-y: auto; - - // Prevent double scrollbars on biography tab - .ds4-sheet-tab.tab.biography.active { - overflow: hidden; - } }