24 lines
No EOL
519 B
CSS
24 lines
No EOL
519 B
CSS
.root-note {
|
|
max-width: 40rem;
|
|
min-width: 15rem;
|
|
background-color: var(--foreground-color);
|
|
padding: 1.5rem 1.5rem 1rem; /* top, left-right, bottom*/
|
|
border-radius: 0.75rem;
|
|
margin-top: 1rem;
|
|
margin-right: 1.5rem;
|
|
margin-left: 1.5rem;
|
|
width: 100%;
|
|
}
|
|
.scroller {
|
|
height: 100vh;
|
|
overflow: scroll;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
.descendants {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
align-items: center;
|
|
} |