Skip to content

Commit 75a2d69

Browse files
committed
fix: 내 편지함 디자인 보이지 않는 문제 해결
- gradietn class에 !important를 적용
1 parent c1c562c commit 75a2d69

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/styles/utilities.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,22 +90,22 @@
9090

9191
/* letter-box */
9292
.window-bg {
93-
background: linear-gradient(to bottom, #d5b695, #b3895d);
93+
background: linear-gradient(to bottom, #d5b695, #b3895d) !important;
9494
}
9595

9696
.window-top-checked {
97-
background: linear-gradient(to bottom, #ffffff, #fff5ed);
97+
background: linear-gradient(to bottom, #ffffff, #fff5ed) !important;
9898
}
9999

100100
.window-top-unChecked {
101-
background: linear-gradient(to bottom, #ffffff, #fff4f2);
101+
background: linear-gradient(to bottom, #ffffff, #fff4f2) !important;
102102
}
103103

104104
.window-bottom-checked {
105-
background: linear-gradient(to bottom, #FFF7E3, #FFE197);
105+
background: linear-gradient(to bottom, #fff7e3, #ffe197) !important;
106106
}
107107

108108
.window-bottom-unChecked {
109-
background: linear-gradient(to bottom, #FFF4F2, #FFE6E3);
109+
background: linear-gradient(to bottom, #fff4f2, #ffe6e3) !important;
110110
}
111111
}

0 commit comments

Comments
 (0)