Skip to content

Commit d356cf7

Browse files
committed
Created the WelcomeDialog styles.sass
1 parent 7c86516 commit d356cf7

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
@import "@/common/styles/colors"
2+
3+
.welcome-banner
4+
width: 30rem
5+
display: flex
6+
flex-direction: column
7+
justify-content: space-between
8+
user-select: none
9+
10+
.welcome-inner
11+
height: 100%
12+
13+
.welcome-actions
14+
display: flex
15+
justify-content: space-between
16+
align-items: center
17+
margin-top: 1rem
18+
19+
h3
20+
margin: 0
21+
font-size: 14pt
22+
color: $subtext
23+
24+
.dialog-btn
25+
padding: 0.4rem 1.3rem
26+
border-radius: 0.6rem
27+
28+
.slide-in
29+
animation: slide-in 0.5s forwards
30+
31+
@keyframes slide-in
32+
from
33+
opacity: 0
34+
transform: translateX(10%) rotate(10deg) scale(0.5)
35+
to
36+
opacity: 1
37+
transform: translateX(0)

0 commit comments

Comments
 (0)