30 lines
566 B
CSS
30 lines
566 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%;
|
|
overflow: clip;
|
|
}
|
|
|
|
.note-indent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.ancestor-wrapper {
|
|
display: flex
|
|
}
|
|
|
|
.note {
|
|
width: 100%;
|
|
padding-bottom: 1rem;
|
|
min-width: 0;
|
|
}
|