ZhangXianQiang
2024-06-04 d54ef2a3463e0129909741bf7fb0ac355bebe54d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
  <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="flex-shrink-0 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>
:deep(.card) {
  border-radius: 30px;
}
 
@media (min-width: 1836px) {
  .container {
    max-width: 1724px;
  }
}
 
</style>