Skip to content

Commit d730454

Browse files
authored
Merge pull request #118 from cniajp/event/janog57
スタイル: 背景色の透明度を削除し、CSSのグラデーションを改善
2 parents deb9f92 + a639c91 commit d730454

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/components/pages/Page1.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function Main({ view, isDk }: Props) {
6262
UPCOMING SESSION
6363
</div>
6464
</div>
65-
<div className="top-[55px] left-[120px] w-[1000px] relative longshadow bg-[rgba(18,151,204,0.9)] text-white">
65+
<div className="top-[55px] left-[120px] w-[1000px] relative longshadow bg-[rgba(18,151,204)] text-white">
6666
<div className="text-center py-2 text-1.5xl text-white bg-slate-400 font-din-2014 font-light">
6767
{getTimeStr(talk.startTime)} - {getTimeStr(talk.endTime)}
6868
</div>

src/pages/globals.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ body {
218218
left: -300px;
219219
background-image: linear-gradient(
220220
to bottom,
221-
rgb(229, 100, 12, 0.9),
222-
rgb(229, 100, 12, 0.9)
221+
rgb(229, 100, 12),
222+
rgb(229, 100, 12)
223223
);
224224
transform: skew(0, -45deg);
225225
transform-origin: 0 0;
@@ -232,8 +232,8 @@ body {
232232
left: 0;
233233
background-image: linear-gradient(
234234
to bottom,
235-
rgb(255, 255, 0, 0.9),
236-
rgb(255, 255, 0, 0.9)
235+
rgb(255, 255, 0),
236+
rgb(255, 255, 0)
237237
);
238238
transform: skew(-45deg, 0);
239239
transform-origin: 0 0;

0 commit comments

Comments
 (0)