We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c86516 commit d356cf7Copy full SHA for d356cf7
client/src/common/components/WelcomeDialog/styles.sass
@@ -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
15
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