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

[editor] Improve styling of props panel buttons

parent 2fb3be63
No related branches found
No related tags found
No related merge requests found
...@@ -69,10 +69,10 @@ ...@@ -69,10 +69,10 @@
</div> </div>
</mat-form-field> </mat-form-field>
</div> </div>
<button mat-raised-button (click)="deleteElement()"> <button class="delete-element-button" mat-raised-button (click)="deleteElement()">
Element löschen Element löschen
</button> </button>
<button mat-raised-button> <button mat-raised-button class="duplicate-element-button">
Element duplizieren Element duplizieren
</button> </button>
</mat-tab> </mat-tab>
......
...@@ -11,7 +11,9 @@ import { UnitUIElement } from '../../../../../../../common/unit'; ...@@ -11,7 +11,9 @@ import { UnitUIElement } from '../../../../../../../common/unit';
':host ::ng-deep .mat-tab-label {min-width: 0}', ':host ::ng-deep .mat-tab-label {min-width: 0}',
'.newOptionElement {margin-top: 20px}', '.newOptionElement {margin-top: 20px}',
'.newOptionElement button {background-color: #696969; margin: 5px}', '.newOptionElement button {background-color: #696969; margin: 5px}',
'mat-tab-group {padding: 10px;}' 'mat-tab-group {padding: 10px;}',
'.delete-element-button {margin-bottom: 5px; border: 1px solid red;}',
'.duplicate-element-button {margin-bottom: 5px}'
] ]
}) })
export class PropertiesComponent { export class PropertiesComponent {
......
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