소스 검색

全屏样式

dev
yuzongping 1 주 전
부모
커밋
fc33414a01
2개의 변경된 파일13개의 추가작업 그리고 9개의 파일을 삭제
  1. +5
    -5
      src/App.vue
  2. +8
    -4
      src/style/_base.scss

+ 5
- 5
src/App.vue 파일 보기

@@ -1,9 +1,9 @@
<template>
<v-scale-screen width="1920" height="1080">
<div id="app">
<router-view />
</div>
</v-scale-screen>
<!-- <v-scale-screen width="1920" height="1080"> -->
<div id="app">
<router-view />
</div>
<!-- </v-scale-screen> -->
</template>

<script>


+ 8
- 4
src/style/_base.scss 파일 보기

@@ -20,8 +20,10 @@ body {

.page {
position: relative;
width: 1920px;
height: 1080px;
width: 100vw;
min-width: 1920px;
height: 100vh;
min-height: 1080px;

.left_side {
position: absolute;
@@ -100,8 +102,10 @@ body {


.screen {
width: 1920px;
height: 1080px;
width: 100vw;
min-width: 1920px;
height: 100vh;
min-height: 1080px;
}

.relative {


불러오는 중...
취소
저장