blob: f982522b82d608d151de71888208f9ad03701403 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
const { tag = 'div' } = Astro.props;
const Tag = tag;
---
<style>
.container {
width: 1248px; /** TODO: responsive */
margin-left: auto;
margin-right: auto;
}
</style>
<Tag class="container"><slot /></Tag>
|