caner 1 year ago
parent
commit
61b296e170
2 changed files with 5 additions and 3 deletions
  1. 1 0
      src/pages/login/index.vue
  2. 4 3
      src/pages/room/create.vue

+ 1 - 0
src/pages/login/index.vue

@@ -44,6 +44,7 @@ const router = useRouter()
 </script>
 <style lang="scss" scoped>
 .login {
+  min-width: 350px;
   width: 100%;
   height: 100%;
   display: flex;

+ 4 - 3
src/pages/room/create.vue

@@ -1,11 +1,12 @@
 <template>
-  <div>创建</div>
+  <div class="roomCreate">
+    创建
+  </div>
 </template>
 
 <script setup lang='ts'>
 
 </script>
-
-<style>
+<style lang="scss" scoped>
 
 </style>