File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,6 @@ This shows on the left
11
11
::right::
12
12
# Right
13
13
This shows on the right
14
- ::bottom::
15
- # Bottom
16
- This shows at bottom, below left and right
17
14
```
18
15
-->
19
16
@@ -39,9 +36,6 @@ const props = defineProps({
39
36
<div class =" col-right" :class =" props.class" >
40
37
<slot name =" right" />
41
38
</div >
42
- <div class =" col-bottom" :class =" props.class" >
43
- <slot name =" bottom" />
44
- </div >
45
39
</div >
46
40
</template >
47
41
@@ -52,8 +46,7 @@ const props = defineProps({
52
46
grid-template-rows : repeat (2 , 1fr );
53
47
}
54
48
55
- .col-header ,
56
- .col-bottom { grid-column : -1 /1 ; }
57
- .col-left ,
58
- .col-right { grid-column : span 2 ; }
49
+ .col-header { grid-area : 1 / 1 / 2 / 3 ; }
50
+ .col-left { grid-area : 2 / 1 / 3 / 2 ; }
51
+ .col-right { grid-area : 2 / 2 / 3 / 3 ; }
59
52
</style >
You can’t perform that action at this time.
0 commit comments