2023-07-06 21:26:25 +08:00
|
|
|
.chat-notices {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5em;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
z-index: 10;
|
2023-07-27 21:53:43 +08:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.full-page-chat & {
|
|
|
|
padding-inline: 1rem;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2023-07-06 21:26:25 +08:00
|
|
|
|
|
|
|
&__notice,
|
|
|
|
.chat-retention-reminder {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
background: var(--tertiary-low);
|
2023-12-19 00:49:58 +08:00
|
|
|
padding: 0.5rem;
|
2023-07-06 21:26:25 +08:00
|
|
|
color: var(--primary);
|
2023-07-27 21:53:43 +08:00
|
|
|
min-width: 280px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2023-12-19 00:49:58 +08:00
|
|
|
gap: 0.25rem;
|
2023-07-06 21:26:25 +08:00
|
|
|
}
|
|
|
|
|
2023-07-27 21:53:43 +08:00
|
|
|
.dismiss-btn {
|
2023-07-06 21:26:25 +08:00
|
|
|
color: var(--primary-medium);
|
2023-07-27 21:53:43 +08:00
|
|
|
align-self: flex-start;
|
2023-07-06 21:26:25 +08:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2023-12-19 00:49:58 +08:00
|
|
|
background: var(--tertiary-medium);
|
2023-07-06 21:26:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.full-page-chat .chat-notices {
|
2023-12-19 00:49:58 +08:00
|
|
|
top: 2rem;
|
2023-07-06 21:26:25 +08:00
|
|
|
}
|