2021-04-28 18:51:41 +02:00
|
|
|
.whats-new-popup {
|
|
|
|
&__notifications {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__notification,
|
|
|
|
&__first-notification {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0 24px 24px 24px;
|
|
|
|
border-bottom: 1px solid $Grey-100;
|
2021-06-03 18:28:04 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__last-notification {
|
|
|
|
> * {
|
|
|
|
&:nth-last-child(2) {
|
|
|
|
margin-bottom: 0;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
.whats-new-popup__intersection-observable {
|
|
|
|
bottom: 8px;
|
|
|
|
}
|
2021-04-28 18:51:41 +02:00
|
|
|
}
|
|
|
|
|
2021-05-14 19:17:56 +02:00
|
|
|
&__notification {
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-28 18:51:41 +02:00
|
|
|
&__notification-image {
|
2021-05-03 19:39:26 +02:00
|
|
|
align-self: center;
|
2021-04-28 18:51:41 +02:00
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__description-and-date {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__notification-date {
|
|
|
|
color: $Grey-500;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button,
|
|
|
|
&__link {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__link {
|
|
|
|
@include H6;
|
|
|
|
|
|
|
|
color: $Blue-500;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__notification-title {
|
|
|
|
@include H4;
|
|
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
2021-06-03 18:28:04 +02:00
|
|
|
|
|
|
|
&__intersection-observable {
|
|
|
|
bottom: 22px;
|
|
|
|
position: absolute;
|
|
|
|
height: 1px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-04-28 18:51:41 +02:00
|
|
|
}
|
2021-05-03 19:39:26 +02:00
|
|
|
|
|
|
|
.popover-wrap.whats-new-popup__popover {
|
|
|
|
@media screen and (min-width: 576px) {
|
|
|
|
max-height: 600px;
|
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 575px) {
|
|
|
|
max-height: 568px;
|
|
|
|
}
|
|
|
|
}
|