mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
19 lines
337 B
Vue
19 lines
337 B
Vue
<script setup lang="ts">
|
|
import RecommendContent from './RecommendContent.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div bg="$bew-bg">
|
|
<div class="banner flex justify-center items-center flex-col" />
|
|
<recommend-content />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.banner {
|
|
height: 83px;
|
|
max-height: unset;
|
|
transition: 0.3s;
|
|
}
|
|
</style>
|