2022-06-01 19:09:13 +02:00
|
|
|
.notifications {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
background-color: var(--color-background-default);
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 100%;
|
|
|
|
padding: 65px 24px 15px 24px;
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2022-06-01 19:09:13 +02:00
|
|
|
padding: 10px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title-container {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
align-items: center;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
@include H3;
|
|
|
|
|
|
|
|
margin-left: 26px;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2022-06-01 19:09:13 +02:00
|
|
|
@include H6;
|
|
|
|
|
|
|
|
margin-left: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&_button {
|
|
|
|
width: auto;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2022-06-01 19:09:13 +02:00
|
|
|
font-size: 0.75rem;
|
|
|
|
padding: 3.5px 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
display: flex;
|
|
|
|
overflow: auto;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2022-06-01 19:09:13 +02:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
@include H3;
|
|
|
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
text-align: center;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2022-06-01 19:09:13 +02:00
|
|
|
@include H6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.empty {
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__item {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
2023-05-03 11:27:01 +02:00
|
|
|
padding: 16px 32px 16px 16px;
|
2022-06-01 19:09:13 +02:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
2022-11-17 21:53:51 +01:00
|
|
|
background-color: var(--color-background-default-hover);
|
2022-06-01 19:09:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__unread-dot {
|
|
|
|
content: ' ';
|
|
|
|
align-self: flex-start;
|
|
|
|
margin-top: 6px;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
background-color: transparent;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.unread {
|
2023-05-03 11:27:01 +02:00
|
|
|
flex-shrink: 0;
|
2022-06-01 19:09:13 +02:00
|
|
|
background-color: var(--color-primary-default);
|
|
|
|
}
|
|
|
|
|
|
|
|
&__details {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-left: 12px;
|
|
|
|
|
2023-05-03 11:27:01 +02:00
|
|
|
&__message {
|
|
|
|
overflow-wrap: anywhere;
|
|
|
|
}
|
|
|
|
|
2022-06-01 19:09:13 +02:00
|
|
|
&__infos {
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
font-size: 12px;
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|