Skip to content

Commit 5f799ab

Browse files
FIXED: shipping week lists gradients
1 parent 810437f commit 5f799ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ui/components/landing/Developers.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ const shipping = fillMonthsGaps(shippingData);
454454
display: block;
455455
height: 10px;
456456
position: absolute;
457-
background: linear-gradient(to bottom, #f6f6f7 , 80%, transparent);
457+
background: linear-gradient(to bottom, #f6f6f7 30%, rgba(246,246,247,0) 100%);
458458
flex-shrink: 0;
459459
z-index: 1;
460460
top: 0;
@@ -468,7 +468,7 @@ const shipping = fillMonthsGaps(shippingData);
468468
display: block;
469469
height: 10px;
470470
position: absolute;
471-
background: linear-gradient(to top, #f6f6f7, 80%, transparent);
471+
background: linear-gradient(to top, #f6f6f7 30%, rgba(246, 246, 247, 0) 100%);
472472
flex-shrink: 0;
473473
z-index: 1;
474474
bottom: 0;
@@ -482,11 +482,11 @@ const shipping = fillMonthsGaps(shippingData);
482482
}
483483

484484
html.dark .week-details-wrap::before {
485-
background: linear-gradient(to bottom, #1c1c1c, 70%, transparent);
485+
background: linear-gradient(to bottom, #1c1c1c 30%, rgba(246, 246, 247, 0) 100%);
486486
}
487487

488488
html.dark .week-details-wrap::after {
489-
background: linear-gradient(to top, #1c1c1c, 70%, transparent);
489+
background: linear-gradient(to top, #1c1c1c 30%, rgba(246, 246, 247, 0) 100%);
490490
}
491491

492492
.week-text {

0 commit comments

Comments
 (0)