Skip to content

Commit 548aa9b

Browse files
committed
[STYLE] toolbar 메뉴를 반응형으로 만들고 container fluid 속성을 추가하였습니다.
1 parent 5940d69 commit 548aa9b

6 files changed

Lines changed: 18 additions & 13 deletions

File tree

patent-calculator/src/App.vue

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<v-toolbar-items>
77
<v-btn flat v-for="(item, i) in menu" :key="i" @click="view=item.component">
88
<v-badge color="grey darken-2">
9-
<!-- <v-icon>{{item.icon}}</v-icon> -->
10-
<span class="subheading">{{item.title}}</span>
9+
<v-icon class="hidden-md-and-up">{{item.icon}}</v-icon>
10+
<span class="subheading hidden-sm-and-down">{{item.title}}</span>
1111
</v-badge>
1212
</v-btn>
1313
</v-toolbar-items>
@@ -95,8 +95,8 @@ export default {
9595
badge: false
9696
},
9797
{
98-
icon: "add",
99-
title: "상품추가",
98+
icon: "note_add",
99+
title: "상품 추가",
100100
component: "ProductAdder",
101101
badge: false
102102
},
@@ -148,7 +148,12 @@ export default {
148148
}
149149
150150
#app-toolbar > .v-toolbar__content {
151-
padding-left: 10rem;
152-
padding-right: 10rem;
151+
padding-right: 80px;
152+
}
153+
154+
@media screen and (max-width: 1264px) {
155+
#app-toolbar > .v-toolbar__content {
156+
padding-right: 0px;
157+
}
153158
}
154159
</style>

patent-calculator/src/components/Briefcase.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<v-container>
2+
<v-container fluid>
33
<v-slide-y-transition mode="out-in">
44
<v-layout column wrap>
55
<h1 class="headline font-weight-bold mb-2">상품 관리</h1>

patent-calculator/src/components/ProductAdder.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<template>
2-
<v-container>
2+
<v-container fluid>
33
<v-slide-y-transition mode="out-in">
44
<v-layout column wrap>
5-
<h1 class="headline font-weight-bold mb-2">상품추가</h1>
5+
<h1 class="headline font-weight-bold mb-2">상품 추가</h1>
66
<v-stepper class="elevation-0 pa-0" v-model="curStep">
77
<v-stepper-header class="elevation-0">
88
<v-stepper-step :complete="curStep>1" step="1">상품 입력</v-stepper-step>
@@ -31,7 +31,7 @@
3131
rows="1"
3232
></v-textarea>
3333
</v-flex>
34-
<v-flex>
34+
<v-flex class="ml-2">
3535
<v-layout align-center justify-center row fill-height>
3636
<v-btn
3737
icon

patent-calculator/src/components/Quotation.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<v-slide-y-transition mode="out-in">
3-
<v-container id="print-area">
3+
<v-container fluid id="print-area">
44
<v-layout column>
55
<v-layout row>
66
<v-flex s6>

patent-calculator/src/components/Search.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<v-container>
2+
<v-container fluid>
33
<v-slide-y-transition mode="out-in">
44
<v-layout column wrap>
55
<h1 class="headline font-weight-bold mb-2">검색하기</h1>

patent-calculator/src/components/Settings.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<v-container>
2+
<v-container fluid>
33
<v-slide-y-transition mode="out-in">
44
<v-layout column wrap>
55
<h1 class="headline font-weight-bold mb-4">설정하기</h1>

0 commit comments

Comments
 (0)