57 lines
871 B
CSS
57 lines
871 B
CSS
.container {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.container button {
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.toast {
|
|
position: fixed;
|
|
right: -500px;
|
|
bottom: 90px;
|
|
height: 89px;
|
|
border-radius: 20px;
|
|
padding: 12px 16px;
|
|
background: #000000;
|
|
border: 1px solid #143916;
|
|
transition: right 0.3s ease;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 21px;
|
|
font-family: var(--font-manrope);
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 7px;
|
|
}
|
|
|
|
.closeIcon {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
width: 100%;
|
|
height: auto;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.info span {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
line-height: 19px;
|
|
}
|
|
|
|
.visible {
|
|
right: 20px;
|
|
}
|