36 lines
564 B
SCSS
36 lines
564 B
SCSS
.notification {
|
|
border-radius: 40px;
|
|
background: linear-gradient(180deg, #FFF 0%, #EBEBEB 100%);
|
|
padding: 15px 60px 15px 15px;
|
|
position: fixed;
|
|
bottom: 25px;
|
|
right: 25px;
|
|
z-index: 20;
|
|
|
|
&__info {
|
|
display: flex;
|
|
column-gap: 10px;
|
|
align-items: center;
|
|
|
|
h2 {
|
|
max-width: 210px;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
img {
|
|
max-width: 24px;
|
|
}
|
|
}
|
|
|
|
&__close {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 20px;
|
|
width: 15px;
|
|
height: 15px;
|
|
}
|
|
}
|