fix(editor): Change executions title to match menu (#5349)

* fix(editor): Prevent content moving between pages

* fix(editor): Change execution page title
This commit is contained in:
Csaba Tuncsik
2023-02-03 14:00:22 +01:00
committed by GitHub
parent 50cb75706b
commit 338b354ef1
3 changed files with 20 additions and 16 deletions

View File

@@ -35,17 +35,17 @@ export default Vue.extend({
<style lang="scss" module>
.template {
display: flex;
padding: var(--spacing-3xl) var(--spacing-xl) var(--spacing-4xl) var(--spacing-xl);
width: 100%;
max-width: 1280px;
padding: var(--spacing-l) var(--spacing-l) 0;
justify-content: center;
@media (min-width: 1200px) {
padding: var(--spacing-2xl) var(--spacing-2xl) 0;
}
}
.container {
width: 100%;
max-width: 1024px;
margin: 0 auto;
@media (max-width: $breakpoint-md) {
width: 900px;
}
}
.header {