You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
427 B
30 lines
427 B
<style>
|
|
side {
|
|
background-color: var(--color-bg-secondary);
|
|
padding: 1em;
|
|
}
|
|
|
|
sidebar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
height: 60vh;
|
|
}
|
|
|
|
content {
|
|
padding: 1em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: grow;
|
|
}
|
|
</style>
|
|
|
|
<sidebar>
|
|
<side>
|
|
<slot name="side"></slot>
|
|
</side>
|
|
|
|
<content>
|
|
<slot name="content"></slot>
|
|
</content>
|
|
</sidebar>
|
|
|