Skip to content

Commit

Permalink
fix(responsive style): 반응형 규격 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
5ewon committed Apr 13, 2024
1 parent e5098ce commit 9ab6e18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/coin/TradeHistory.css.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { flex, font, theme } from "@/styles";
import { flex, font, theme, screen } from "@/styles";
import StyleVariantsType from "@/types/styleVariants.interface";
import { style, styleVariants } from "@vanilla-extract/css";

Expand All @@ -20,7 +20,7 @@ export const hgroup = style({
...flex.VERTICAL,

"@media": {
"screen and (max-width: 480px)": {
[`screen and (max-width: ${screen.phone})`]: {
...flex.COLUMN_CENTER,
},
},
Expand Down
8 changes: 4 additions & 4 deletions app/coin/style.css.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { flex, font, theme } from "@/styles";
import { flex, font, theme, screen } from "@/styles";
import StyleVariantsType from "@/types/styleVariants.interface";
import { style, styleVariants } from "@vanilla-extract/css";

Expand All @@ -15,7 +15,7 @@ export const utilityBox = style({
...flex.VERTICAL,

"@media": {
"screen and (max-width: 480px)": {
[`screen and (max-width: ${screen.phone})`]: {
...flex.COLUMN_FLEX,
},
},
Expand Down Expand Up @@ -64,7 +64,7 @@ export const tradeToggleBase = style({
...flex.CENTER,

"@media": {
"screen and (max-width: 480px)": {
[`screen and (max-width: ${screen.phone})`]: {
width: "30%",
},
},
Expand Down Expand Up @@ -133,7 +133,7 @@ export const chartHeader = style({
...flex.BETWEEN,

"@media": {
"screen and (max-width: 480px)": {
[`screen and (max-width: ${screen.phone})`]: {
...flex.COLUMN_FLEX,
},
},
Expand Down

0 comments on commit 9ab6e18

Please sign in to comment.