generated from template/astro-simple-template
18 lines
329 B
TypeScript
18 lines
329 B
TypeScript
|
|
export const BG = (props: { children: React.ReactNode }) => {
|
|
return (
|
|
<div
|
|
style={{
|
|
position: 'fixed',
|
|
top: 0,
|
|
left: 0,
|
|
width: '100vw',
|
|
height: '100vh',
|
|
backgroundColor: 'rgba(0, 0, 0, 0.5)',
|
|
zIndex: -1,
|
|
}}
|
|
>
|
|
{props.children}
|
|
</div>
|
|
);
|
|
} |