1.shadow-container-scroll {
2 background: linear-gradient(
3 theme(colors.primary-base) 30%,
4 rgba(255, 255, 255, 0)
5 ) center top, linear-gradient(
6 rgba(255, 255, 255, 0),
7 theme(colors.primary-base) 70%
8 ) center bottom,
9 radial-gradient(
10 farthest-side at 50% 0,
11 rgba(0, 0, 0, 0.5),
12 rgba(0, 0, 0, 0)
13 ) center top, radial-gradient(
14 farthest-side at 50% 100%,
15 rgba(0, 0, 0, 0.5),
16 rgba(0, 0, 0, 0)
17 ) center bottom;
18 background-repeat: no-repeat;
19 background-size: 100% 30px, 100% 30px, 100% 15px, 100% 15px;
20 background-attachment: local, local, scroll, scroll;
21}