Skip to content

Commit

Permalink
make transforms same width
Browse files Browse the repository at this point in the history
  • Loading branch information
jwetzell committed Aug 10, 2023
1 parent 22a4372 commit 9d14ce0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webui/src/app/components/transform/transform.component.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<ng-container *ngIf="transform">
<div
class="flex items-center p-1 m-2 transform bg-gray-800 border-2 border-gray-400 border-solid w-fit"
class="flex items-center p-1 w-auto m-2 transform bg-gray-800 border-2 border-gray-400 border-solid"
[style.opacity]="this.transform.enabled ? '1.0' : '0.5'">
<div class="flex items-center justify-center">
<mat-icon appearance="fill" class="scale-50" [style.color]="indicatorColor"> circle </mat-icon>
</div>
<div class="text-gray-400">{{ transform.type }}</div>
<div class="flex-auto ml-2">
<div class="text-gray-400 flex-auto">{{ transform.type }}</div>
<div class="ml-2">
<app-object-form
[objectType]="'Transform'"
[type]="transform.type"
Expand Down

0 comments on commit 9d14ce0

Please sign in to comment.