From 9962eb215c26b9d3566c58701cea01ae49d5dab1 Mon Sep 17 00:00:00 2001 From: crisbeto Date: Thu, 3 May 2018 23:22:05 +0200 Subject: [PATCH] fix(chips): stacked chips overflowing chip list Fixes the stacked chips overflowing their parent due to them having the wrong `box-sizing` by default. --- src/lib/chips/chips.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/chips/chips.scss b/src/lib/chips/chips.scss index 2c5b211d4ead..a6c373685491 100644 --- a/src/lib/chips/chips.scss +++ b/src/lib/chips/chips.scss @@ -23,6 +23,7 @@ $mat-chip-remove-size: 18px; .mat-chip { position: relative; overflow: hidden; + box-sizing: border-box; } .mat-standard-chip {