diff --git a/src/components/ToolIcon.scss b/src/components/ToolIcon.scss index 8d9895499c..caa3463db7 100644 --- a/src/components/ToolIcon.scss +++ b/src/components/ToolIcon.scss @@ -165,9 +165,13 @@ width: var(--lg-button-size); height: var(--lg-button-size); - @include isMobile { - width: 1.75rem; - height: 1.75rem; + @media screen and (max-width: 450px) { + width: 1.8rem; + height: 1.8rem; + } + @media screen and (max-width: 379px) { + width: 1.5rem; + height: 1.5rem; } svg { diff --git a/src/css/styles.scss b/src/css/styles.scss index 3ee275aacb..75b1b67727 100644 --- a/src/css/styles.scss +++ b/src/css/styles.scss @@ -596,6 +596,8 @@ background-color: var(--island-bg-color); .ToolIcon__icon { + width: 2rem; + height: 2rem; border-radius: 0; }