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
2 changes: 1 addition & 1 deletion modules/ui/src/app/app.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ $nav-open-btn-width: 210px;
box-sizing: border-box;
height: 34px;
margin: 11px 0;
line-height: 50%;
line-height: 50% !important;
}

.app-sidebar-button {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ $border-radius: 12px;
.device-item-with-actions {
display: grid;
width: $device-item-width;
min-height: calc($icon-width - 2px);
border-radius: $border-radius;
border: 1px solid #c4c7c5;
background: $white;
Expand Down Expand Up @@ -162,7 +163,7 @@ $border-radius: 12px;
.button-start {
grid-area: start;
width: $icon-width;
height: calc($icon-width - 2px);
height: 100%;
background-color: mat.get-color-from-palette($color-primary, 50);
justify-self: end;
border-radius: 0 $border-radius $border-radius 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
box-sizing: border-box;
height: 34px;
margin: 11px 2px 11px 0;
line-height: 50%;
line-height: 50% !important;
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
border-radius: 4px;
color: $grey-700;
display: flex;
align-items: start;
align-items: flex-start;
justify-content: center;
& ::ng-deep .mat-mdc-button-persistent-ripple {
border-radius: 4px;
Expand All @@ -69,12 +69,12 @@
.certificate-item-name {
font-size: 16px;
color: $grey-800;
height: 24px;
min-height: 24px;
}
.certificate-item-organisation,
.certificate-item-expires {
font-size: 14px;
color: $grey-700;
height: 20px;
min-height: 20px;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,17 @@
margin: 4px;
padding: 8px !important;
box-sizing: content-box;
line-height: normal !important;

.close-button-icon {
width: 24px;
height: 24px;
margin: 0;
}

::ng-deep * {
line-height: inherit !important;
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
text-overflow: ellipsis;
font-size: 16px;
color: $grey-800;
height: 24px;
min-height: 24px;
}

.profile-item-button {
Expand Down
5 changes: 5 additions & 0 deletions modules/ui/src/app/pages/settings/settings.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,17 @@
margin: 4px;
padding: 8px;
box-sizing: content-box;
line-height: normal !important;

.close-button-icon {
width: 24px;
height: 24px;
margin: 0;
}

::ng-deep * {
line-height: inherit !important;
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ $option-height: 36px;

::ng-deep.mat-mdc-form-field-infix {
padding: 6px 0;
height: $option-height;
width: $option-width;
min-height: $option-height;
}
Expand Down