Convert Page component to use flex to allow more flexibility
This commit is contained in:
parent
86b0ab7600
commit
07f4144457
|
@ -8,8 +8,10 @@
|
|||
|
||||
<style>
|
||||
div {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
align-items: stretch;
|
||||
max-width: 80ch;
|
||||
margin: 0 auto;
|
||||
padding: calc(var(--spacing-xl) * 2);
|
||||
|
|
Loading…
Reference in New Issue