From d2fc22d5f2b0f095b4c49c618ef03ae2f0f41b5d Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 21 十月 2024 11:21:36 +0800 Subject: [PATCH] 江西空管发版 --- src/views/home/index.vue | 18 ++++++++++++++---- 1 files changed, 14 insertions(+), 4 deletions(-) diff --git a/src/views/home/index.vue b/src/views/home/index.vue index a8cf7f0..8ea1bc8 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -1,15 +1,25 @@ <template> - <UserPanel></UserPanel> - <div class="test"></div> + <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> -.test { - height: 500px; +:deep(.card) { + border-radius: 30px; } + +@media (min-width: 1836px) { + .container { + max-width: 1724px; + } +} + </style> \ No newline at end of file -- Gitblit v1.8.0