Skip to content

Commit

Permalink
fix: chips don't show scrollbars
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSlimvReal committed Feb 6, 2023
1 parent bb95e1d commit a3f3bbf
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 9 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { FaDynamicIconComponent } from "../../../core/view/fa-dynamic-icon/fa-dy
@Component({
selector: "app-school-block",
templateUrl: "./school-block.component.html",
styleUrls: ["./school-block.component.scss"],
standalone: true,
imports: [FaDynamicIconComponent],
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
text-decoration: underline;
}

:host {
display: inline-block;
}

.block-height {
line-height: sizes.$icon-block;
}
3 changes: 2 additions & 1 deletion src/styles/resets/_mat-chip.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Chip text should not overflow
.mat-mdc-standard-chip .mdc-evolution-chip__cell--primary, .mat-mdc-standard-chip .mdc-evolution-chip__action--primary, .mat-mdc-standard-chip .mat-mdc-chip-action-label {
overflow: auto !important;
overflow: hidden !important;
text-overflow: ellipsis;
}

0 comments on commit a3f3bbf

Please sign in to comment.