2025-12-11 17:17:01 +00:00
|
|
|
@layer components {
|
2025-12-11 19:58:17 +00:00
|
|
|
.note {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
border: 1px solid var(--clr-border);
|
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
|
padding: 1ex 2ex;
|
2023-11-25 16:08:07 +00:00
|
|
|
|
2025-12-27 17:55:29 +00:00
|
|
|
.e-content {
|
|
|
|
|
> p:first-child {
|
|
|
|
|
margin-block-start: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.u-photo {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
2023-11-25 16:08:07 +00:00
|
|
|
}
|
|
|
|
|
|
2025-12-11 19:58:17 +00:00
|
|
|
.syndication-links {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
gap: 1ex;
|
|
|
|
|
|
|
|
|
|
svg {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
width: auto;
|
|
|
|
|
height: 1lh;
|
|
|
|
|
}
|
2023-11-25 16:08:07 +00:00
|
|
|
}
|
|
|
|
|
}
|
2025-12-11 19:58:17 +00:00
|
|
|
|
|
|
|
|
.reply-to {
|
|
|
|
|
font-size: 85%;
|
|
|
|
|
margin-inline: 2ex;
|
|
|
|
|
padding-inline: 1ex;
|
|
|
|
|
border: 1px solid var(--clr-border);
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
border-top-left-radius: var(--border-radius);
|
|
|
|
|
border-top-right-radius: var(--border-radius);
|
|
|
|
|
}
|
2023-11-25 16:08:07 +00:00
|
|
|
}
|