Skip to content
Snippets Groups Projects
Commit bf89c884 authored by rhenck's avatar rhenck
Browse files

[editor] Fix CSS value for flex-start

flex-start is the correct value for flex containers.
parent cdf702bb
No related branches found
No related tags found
No related merge requests found
...@@ -180,7 +180,7 @@ import { SelectionService } from '../../services/selection.service'; ...@@ -180,7 +180,7 @@ import { SelectionService } from '../../services/selection.service';
`, `,
styles: [ styles: [
'::ng-deep .layoutMenu {padding: 0 15px; width: 250px;}', '::ng-deep .layoutMenu {padding: 0 15px; width: 250px;}',
'::ng-deep .layoutMenu fieldset {margin: 10px 0; display: flex; flex-direction: column; align-items: start;}', '::ng-deep .layoutMenu fieldset {margin: 10px 0; display: flex; flex-direction: column; align-items: flex-start;}',
'::ng-deep .layoutMenu .section-height-input {margin-top: 10px;}', '::ng-deep .layoutMenu .section-height-input {margin-top: 10px;}',
'.menuItem {margin-bottom: 5px;}', '.menuItem {margin-bottom: 5px;}',
'::ng-deep .activeAfterID-menu .mat-form-field {width:90%; margin-left: 10px;}' '::ng-deep .activeAfterID-menu .mat-form-field {width:90%; margin-left: 10px;}'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment