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