21 lines
254 B
Svelte
21 lines
254 B
Svelte
<section>
|
|
<div>
|
|
<slot />
|
|
</div>
|
|
</section>
|
|
|
|
<style>
|
|
section {
|
|
width: 100%;
|
|
background-color: var(--main-text-color);
|
|
color: rgb(46, 46, 46);
|
|
margin: 0;
|
|
margin-bottom: 10px;
|
|
padding: 0;
|
|
}
|
|
div {
|
|
width: 90%;
|
|
margin: auto;
|
|
}
|
|
</style>
|