lohir
2024-10-17 ac6bbef6786c74e7a86852b1b8bff7f23e8592d8
src/views/home/index.vue
@@ -1,8 +1,25 @@
<template>
  123
  <div class="home-page container mx-auto flex justify-between py-6">
    <UserPanel class="flex-shrink-0 mr-5 sticky top-6"></UserPanel>
    <InfoPanel class="grow"></InfoPanel>
  </div>
</template>
<script setup>
import UserPanel from './components/user-panel/index.vue';
import InfoPanel from './components/info-panel/index.vue';
</script>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
:deep(.card) {
  border-radius: 30px;
}
@media (min-width: 1836px) {
  .container {
    max-width: 1724px;
  }
}
</style>