Move Helpscout beacon to the left on form editor page

[MAILPOET-2812]
This commit is contained in:
Rostislav Wolny
2020-04-29 17:13:49 +02:00
committed by Veljko V
parent 798fc883e2
commit 36be1ce8d1
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// Override CSS for HelpScout beacon on form editor page
.admin_page_mailpoet-form-editor {
.BeaconFabButtonFrame,
.BeaconContainer {
left: 175px;
}
&.folded {
.BeaconFabButtonFrame,
.BeaconContainer {
left: 50px;
}
}
@include breakpoint-max-width(960px) {
.BeaconFabButtonFrame,
.BeaconContainer {
left: 50px;
}
}
@include breakpoint-max-width(782px) {
.BeaconFabButtonFrame,
.BeaconContainer {
left: 15px;
}
}
}

View File

@@ -22,6 +22,7 @@
// Actual UI components.
@import './components-form-editor/form-title';
@import './components-form-editor/header';
@import './components-form-editor/helpscout';
@import './components-form-editor/sidebar';
@import './components-form-editor/preview';
@import './components-form-editor/block-editor';