From 2e14d83d94f6c060e2293b6d8f611a8f17379acf Mon Sep 17 00:00:00 2001 From: Alessandra Davila Date: Wed, 1 Apr 2020 13:44:33 -0500 Subject: [PATCH] fix(data-table): remove max width line from core styles (#5747) * fix(data0table): remove max width line from core styles * chore(data-table): add sticky haeder mixin with max-width Co-authored-by: TJ Egan --- packages/components/docs/sass.md | 2 +- .../components/src/components/data-table/_data-table-core.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/components/docs/sass.md b/packages/components/docs/sass.md index 8e0e1e803e0a..53efcfc28834 100644 --- a/packages/components/docs/sass.md +++ b/packages/components/docs/sass.md @@ -15799,7 +15799,7 @@ Data table core styles } } - @include sticky-header($max-width: rem(900px)); + @include sticky-header($max-width: 100%); } ``` diff --git a/packages/components/src/components/data-table/_data-table-core.scss b/packages/components/src/components/data-table/_data-table-core.scss index a7f56a8cd3bd..b7dea48ef2a2 100644 --- a/packages/components/src/components/data-table/_data-table-core.scss +++ b/packages/components/src/components/data-table/_data-table-core.scss @@ -549,7 +549,7 @@ } } - @include sticky-header($max-width: rem(900px)); + @include sticky-header($max-width: 100%); } @include exports('data-table-v2-core') {