summaryrefslogtreecommitdiff
path: root/examples/ssr/src/components/Container.astro
blob: f1741156cce697f7f9decde9d533313aba4803b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
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>