Iceshrimp.NET/Iceshrimp.Frontend/Components/TimelineNote.razor.css
Lilian c647224b32
[frontend] Improve note rendering at small widths
Fix single note view alignment issues
2024-06-19 01:56:56 +02:00

13 lines
No EOL
342 B
CSS

.note-container {
max-width: 45rem;
background-color: var(--foreground-color);
padding: 1.5rem 1.5rem 1rem; /* top, left-right, bottom*/
@media (max-width: 1000px) {
padding: 1.5rem 1rem 1rem;
}
border-radius: 0.75rem;
margin-top: 1rem;
margin-right: 0.5rem;
margin-left: 0.5rem;
width: 100%;
}