[Fix] event container RWD edge case

This commit is contained in:
Tony Yang
2021-04-01 16:29:51 +08:00
parent dc35f001cf
commit 99b2b8785e

View File

@@ -15,7 +15,7 @@ $fontFamily: "Noto Serif CJK TC -Bold";
@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {
font-size: 13pt; font-size: 13pt;
} }
@media screen and (max-width: $max-width-medium-1) { @media screen and (max-width: $max-width-medium-1 - 1px) {
font-size: 22pt; font-size: 22pt;
} }
@media screen and (max-width: 650px) { @media screen and (max-width: 650px) {
@@ -38,7 +38,7 @@ $fontFamily: "Noto Serif CJK TC -Bold";
@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {
transform: scale(0.5); transform: scale(0.5);
} }
@media screen and (max-width: $max-width-medium-1) { @media screen and (max-width: $max-width-medium-1 - 1px) {
transform: scale(1.25); transform: scale(1.25);
} }
@media screen and (max-width: $max-width-small-0) { @media screen and (max-width: $max-width-small-0) {