Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
</div>

<mat-form-field appearance="outline" class="setting-field">
<mat-label>{{ label }}</mat-label>
<mat-select
aria-labelledby="{{ key }}-group-label"
id="{{ key }}-group"
ngDefaultControl
class="setting-radio-group"
[placeholder]="label"
[compareWith]="compare"
[formControlName]="controlName">
<mat-select-trigger>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,11 @@
font-family: variables.$font-text;
}

.info-column {
::ng-deep .info-column {
display: flex;
flex-direction: column;
gap: 6px;
width: 260px;
padding: 0 12px;
justify-content: center;
}
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
data: 'analytics',
}
"></ng-container>
<mat-divider></mat-divider>
</section>
<mat-error
*ngIf="vm.isSubmitting && isFormError"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
display: flex;
flex-direction: column;
flex: 1 0 auto;
padding: 6px 22px;
padding-top: 4px;
}

.setting-drawer-content {
overflow-y: scroll;
height: max-content;
padding: 10px;
padding: 8px 32px;

.setting-drawer-content-form-empty {
grid-template-rows: repeat(2, auto) 1fr;
Expand All @@ -54,7 +54,7 @@
}

.setting-drawer-footer {
padding: 0 8px;
padding: 16px 40px;
margin-top: auto;
display: flex;
flex-shrink: 0;
Expand All @@ -80,6 +80,7 @@
}

.section-item {
height: 88px;
display: grid;
grid-template-columns: 1fr 1fr 1.1fr;
gap: 46px;
Expand All @@ -88,6 +89,7 @@
p {
margin: 0;
}

.label-column {
display: flex;
flex-direction: column;
Expand All @@ -97,14 +99,6 @@
font-family: variables.$font-text;
}

.info-column {
display: flex;
flex-direction: column;
gap: 6px;
width: 260px;
padding: 0 12px;
}

.data-column {
display: flex;
}
Expand Down
Loading