blob: 4580ce03674c397d1ac99fbe27a15ad0ce50100b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<script lang="ts" context="module">
export const id = 'hero-carousel-shelf-background-portal';
</script>
<div {id} />
<style>
#hero-carousel-shelf-background-portal {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow-x: hidden;
z-index: -1;
}
</style>
|