fix width of shapes toolbar for smaller screen size and also fix regression of mobile menu

This commit is contained in:
Aakansha Doshi
2023-09-21 17:45:08 +05:30
parent b3e8d6bbf0
commit 7c1889efc0
2 changed files with 9 additions and 3 deletions

View File

@@ -165,9 +165,13 @@
width: var(--lg-button-size); width: var(--lg-button-size);
height: var(--lg-button-size); height: var(--lg-button-size);
@include isMobile { @media screen and (max-width: 450px) {
width: 1.75rem; width: 1.8rem;
height: 1.75rem; height: 1.8rem;
}
@media screen and (max-width: 379px) {
width: 1.5rem;
height: 1.5rem;
} }
svg { svg {

View File

@@ -596,6 +596,8 @@
background-color: var(--island-bg-color); background-color: var(--island-bg-color);
.ToolIcon__icon { .ToolIcon__icon {
width: 2rem;
height: 2rem;
border-radius: 0; border-radius: 0;
} }