-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathbot-notification.scss
87 lines (75 loc) · 1.88 KB
/
bot-notification.scss
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
78
79
80
81
82
83
84
85
86
87
@use 'components/shared/styles/devices' as *;
.Toastify {
&__toast {
background: var(--icon-black-plus);
color: var(--general-main-1);
min-height: 4.8rem;
height: 4.8rem;
width: fit-content;
text-align: start;
padding: 0.8rem;
padding-inline-start: 1.6rem;
border-radius: 0.8rem;
font-size: 1.4rem;
font-family: inherit;
@include mobile {
height: 4.4rem;
min-height: 4.4rem;
font-size: 1.2rem;
line-height: 1.5rem;
margin-bottom: 0.5rem;
padding: 0.8rem, 1rem;
}
&-container {
padding: 0;
width: auto;
inset-inline-start: 3.5rem;
bottom: 6rem;
@include mobile {
inset-inline-start: 0;
bottom: 9rem;
padding: 0.8rem;
}
}
&-body {
padding: 0;
}
}
&__close-button {
padding: 0.5rem 0;
margin-inline-start: 1.2rem;
opacity: 0.8;
@include mobile {
margin-inline-start: 1.2rem;
}
svg {
fill: var(--general-main-1);
height: 2.2rem;
width: 16px;
@include mobile {
height: 1.6rem;
}
}
}
}
.notification-content {
display: flex;
align-items: center;
button {
background: var(--icon-black-plus);
color: var(--general-main-1);
font-size: 1.4rem;
font-weight: bold;
margin-inline-start: 2rem;
margin-bottom: 0.2rem;
border: 0;
padding: 0;
text-decoration: underline;
cursor: pointer;
word-break: keep-all;
@include mobile {
font-size: 1.2rem;
margin-inline-start: 1.2rem;
}
}
}