From 4c5ed9dab27e96edae57ab8912fe598cd5cfc85e Mon Sep 17 00:00:00 2001 From: Westbrook Johnson Date: Sun, 11 Sep 2022 21:00:56 -0400 Subject: [PATCH] fix: add grid areas workaround locally until available in Spectrum CSS --- packages/dialog/src/dialog.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages/dialog/src/dialog.css b/packages/dialog/src/dialog.css index 29ff183bb3..89f62da32b 100644 --- a/packages/dialog/src/dialog.css +++ b/packages/dialog/src/dialog.css @@ -31,3 +31,14 @@ governing permissions and limitations under the License. width: 100%; height: auto; } + +.grid { + grid-template-areas: + 'hero hero hero hero hero hero' + '. . . . . .' + '. heading heading heading typeIcon .' + '. divider divider divider divider .' + '. content content content content .' + '. footer footer buttonGroup buttonGroup .' + '. . . . . .'; +}