36 lines
564 B
SCSS
Raw Normal View History

2023-07-14 03:03:33 +03:00
.notification {
border-radius: 40px;
background: linear-gradient(180deg, #FFF 0%, #EBEBEB 100%);
2023-12-05 14:22:45 +03:00
padding: 15px 60px 15px 15px;
2023-07-14 03:03:33 +03:00
position: fixed;
bottom: 25px;
right: 25px;
z-index: 20;
&__info {
display: flex;
column-gap: 10px;
align-items: center;
h2 {
2023-12-05 14:22:45 +03:00
max-width: 210px;
2023-07-14 03:03:33 +03:00
font-weight: 500;
font-size: 16px;
margin-bottom: 0;
}
img {
max-width: 24px;
}
}
&__close {
cursor: pointer;
position: absolute;
2023-12-05 14:22:45 +03:00
top: 10px;
right: 20px;
2023-07-14 03:03:33 +03:00
width: 15px;
height: 15px;
}
}