-
-
Notifications
You must be signed in to change notification settings - Fork 636
Expand file tree
/
Copy pathEventLiveCelebrationModal.module.scss
More file actions
77 lines (67 loc) · 1.14 KB
/
EventLiveCelebrationModal.module.scss
File metadata and controls
77 lines (67 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
.modal {
:global(.mantine-Modal-body) {
padding: 0;
}
}
.content {
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
text-align: center;
}
.celebrationEmoji {
font-size: 4rem;
line-height: 1;
margin-bottom: 1rem;
animation: celebrate 0.6s ease-out;
}
@keyframes celebrate {
0% {
transform: scale(0);
opacity: 0;
}
50% {
transform: scale(1.2);
}
70% {
transform: scale(0.9);
}
100% {
transform: scale(1);
opacity: 1;
}
}
.title {
font-size: 1.5rem;
font-weight: 700;
color: var(--mantine-color-dark-7);
margin-bottom: 0.5rem;
}
.subtitle {
color: var(--mantine-color-dimmed);
font-size: 0.95rem;
margin-bottom: 1.5rem;
}
.urlSection {
width: 100%;
margin-bottom: 1.5rem;
}
.urlInput {
padding-right: 110px;
font-size: 0.875rem;
background: var(--mantine-color-gray-0);
}
.actions {
display: flex;
flex-direction: column;
gap: 0.5rem;
width: 100%;
margin-bottom: 1rem;
}
.actionButton {
width: 100%;
}
.doneButton {
width: 100%;
}