fix(css): Fix compile error (#2685)

This commit is contained in:
Jed Fox 2020-12-27 16:42:23 -05:00 committed by GitHub
parent b8d13c98b5
commit 0488b7b5c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
.excalidraw { .excalidraw {
.PasteChartDialog { .PasteChartDialog {
@media #{$media-query} { @media #{$is-mobile-query} {
.Island { .Island {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -13,7 +13,7 @@
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
flex-wrap: wrap; flex-wrap: wrap;
@media #{$media-query} { @media #{$is-mobile-query} {
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
} }