This commit is contained in:
2025-05-24 01:47:40 +09:00
commit 09d97cbb0b
1594 changed files with 184634 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<template>
<div class="placeload-wrap is-flex">
<slot />
</div>
</template>
<style lang="scss">
.placeload-wrap {
&.is-flex {
display: flex;
align-items: center;
}
}
@media only screen and (width <= 767px) {
.placeload-wrap {
&.is-flex {
flex-direction: column;
padding: 1rem 0;
.content-shape-group {
margin-top: 0.5rem;
max-width: 70%;
margin-inline-start: auto;
margin-inline-end: auto;
.content-shape {
margin-inline-start: auto;
margin-inline-end: auto;
}
}
> .content-shape {
margin-top: 0.5rem;
max-width: 70%;
margin-inline-start: auto;
margin-inline-end: auto;
}
}
}
}
</style>