blob: b941e565ef99e0929c68bf542dcc61922de402aa (
plain)
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
|
.notif-mainContainer {
z-index: 999;
position: fixed;
width: 350px;
max-width: 98%;
font-family: "Segoe UI","Tahoma","Calibri","Verdana",sans-serif;
color: #999;
box-sizing: border-box;
}
.notif-mainContainer.topRight{
top: 8px;
right: 8px;
}
.notif-inner {
display: flex;
flex-direction: column;
}
.vanilla-yo-notification{
width: 250px;
background: #58a758;
color: white;
position: relative;
cursor: pointer;
padding: 8px;
margin-bottom: 12px;
display: flex;
}
.notification_header{
font-size: 15px;
font-weight: bold
}
|