From d613cf8af0e73914b5b72b44473a6a8910bf30e8 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 28 Jan 2023 20:33:13 -0800 Subject: [PATCH] Fix alert width on mobile --- components/Alert/index.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/Alert/index.scss b/components/Alert/index.scss index 6a01e10e..aba79f93 100644 --- a/components/Alert/index.scss +++ b/components/Alert/index.scss @@ -22,6 +22,11 @@ max-width: 30vw; padding: $unit * 4; + @include breakpoint(phone) { + max-width: inherit; + width: 60vw; + } + .description { font-size: $font-regular; line-height: 1.4;