20 lines
265 B
Vue
20 lines
265 B
Vue
<template></template>
|
|
<div></div>
|
|
<script setup></script>
|
|
|
|
<style scoped>
|
|
.sub-layout {
|
|
padding: 0;
|
|
margin: 1px 0 0 0;
|
|
}
|
|
.tile {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
border: 1px solid #333;
|
|
}
|
|
</style>
|