Skip to content

Commit df5716b

Browse files
authored
fix(Dialog): adapted skyline (#3077)
1 parent cdb5b71 commit df5716b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/loading/loading.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
height: 100%;
5858
background: conic-gradient(
5959
from 180deg at 50% 50%,
60-
rgba(255, 255, 255, 0) 0deg,
61-
rgba(255, 255, 255, 0) 60deg,
60+
transparent 0deg,
61+
transparent 60deg,
6262
currentColor 330deg,
63-
rgba(255, 255, 255, 0) 360deg
63+
transparent 360deg
6464
);
6565
mask: radial-gradient(transparent calc(50% - 1rpx), #fff 50%);
6666

src/picker/picker.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@
8585

8686
&--top {
8787
top: 0;
88-
background: linear-gradient(180deg, @picker-bg-color 0%, rgba(255, 255, 255, 0) 100%);
88+
background: linear-gradient(180deg, @picker-bg-color 0%, transparent 100%);
8989
}
9090

9191
&--bottom {
9292
bottom: 0;
93-
background: linear-gradient(180deg, @picker-bg-color 0%, rgba(255, 255, 255, 0) 100%);
93+
background: linear-gradient(180deg, @picker-bg-color 0%, transparent 100%);
9494
transform: matrix(1, 0, 0, -1, 0, 0);
9595
}
9696
}

0 commit comments

Comments
 (0)