Skip to content

Commit

Permalink
chore: 어째서인지 깨진 css때문에 레이아웃 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
potados99 committed Feb 27, 2022
1 parent 294906e commit 1fbe829
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions src/core/component/list/GenericList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<v-row justify="center">
<v-col cols="12" lg="12" md="8" sm="10" xs="12">
<div>
<div class="row mx-2 my-1">
<div class="row mx-2 mt-3 mb-1">
<h2>{{ itemDisplayName }}</h2>

<v-spacer />
Expand All @@ -47,7 +47,7 @@
/>
<EmptyView :error="error" :fetching="fetching" :all-items="allItems" :item-display-name="itemDisplayName" />

<v-layout class="pl-6 pr-6 pt-0 pb-0" row>
<v-layout class="pl-6 pr-6 mt-3 mb-1" row>
<v-row v-masonry item-selector=".item" transition-duration="0.3s">
<v-col
v-for="item in allItems"
Expand Down
4 changes: 2 additions & 2 deletions src/core/component/qna/GenericQnABoard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<v-row justify="center">
<v-col cols="12" lg="12" md="8" sm="10" xs="12">
<div>
<div class="row mx-2 my-1">
<div class="row mx-2 mt-3 mb-1">
<h2>{{ itemDisplayName }}</h2>
</div>

Expand All @@ -32,7 +32,7 @@
/>
<EmptyView item-display-name="질문이 없습니다." :all-items="allItems" :fetching="fetching" :error="error" />

<v-layout class="pl-6 pr-6 pt-0 pb-0" row>
<v-layout class="pl-6 pr-6 pt-0 pb-0 mt-3 mb-1" row>
<v-row v-masonry item-selector=".item" transition-duration="0.3s">
<v-col
v-for="question in allItems"
Expand Down
2 changes: 1 addition & 1 deletion src/core/component/qna/GenericQnABoardItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<template>
<v-card :loading="question.loading" :raised="question.editing" :shaped="question.editing" outlined>
<!-- 헤더 -->
<div class="row mx-0">
<div class="row ma-0">
<!-- 질문 상태 -->
<v-card-title v-show="!answer" class="body-1 orange--text">답변 대기중</v-card-title>
<v-card-title v-show="answer && !answerRead" class="body-1 light-blue--text">답변됨</v-card-title>
Expand Down
4 changes: 2 additions & 2 deletions src/core/component/toggleboard/GenericToggleBoard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
<v-row justify="center">
<v-col cols="12" lg="12" md="8" sm="10" xl="12" xs="12">
<div>
<div class="mx-2 my-1">
<div class="mx-2 mt-3 mb-1">
<h2>{{ itemDisplayName }}</h2>
</div>

<LoadingStatusView :error="error" :loading="fetching" skeleton-type="list-item-three-line" />
<EmptyView :item-display-name="itemDisplayName" :all-items="allItems" :fetching="fetching" :error="error" />

<v-layout class="pl-6 pr-6 pt-0 pb-0" row>
<v-layout class="pl-6 pr-6 pt-0 pb-0 mt-3 mb-1" row>
<v-row v-masonry item-selector=".item" transition-duration="0.3s">
<v-col
v-for="item of allItems"
Expand Down
2 changes: 1 addition & 1 deletion src/features/histories/HistoryDataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<v-container fluid>
<v-row justify="center">
<v-col cols="12">
<v-card class="mx-2" outlined raised>
<v-card class="mx-2 mt-3" outlined raised>
<v-card-title>
<h4>{{ itemDisplayName }}</h4>
<v-spacer />
Expand Down
2 changes: 1 addition & 1 deletion src/features/logs/LogDataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<template>
<v-row justify="center">
<v-col cols="12">
<v-card class="mx-2" outlined raised>
<v-card class="mx-2 mt-3" outlined raised>
<v-card-title>
<h4>{{ itemDisplayName }}</h4>
<v-spacer />
Expand Down
2 changes: 1 addition & 1 deletion src/features/visit/VisitRecordCreation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
-->

<template>
<v-row align="center" justify="center">
<v-row align="center" justify="center" class="mt-0">
<div class="metadata-div">
<!-- 안내 -->
<p class="ma-6 text--secondary">QR 체크인이 어려운 경우 방문 기록을 수기로 남겨 주세요.</p>
Expand Down
2 changes: 1 addition & 1 deletion src/features/visitRecords/VisitRecords.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<template>
<v-container fluid>
<v-card>
<v-card class="mx-2 mt-3" outlined>
<v-card-title class="font-weight-bold">교내 식당 방문 기록 액셀 다운로드</v-card-title>

<v-row class="ma-2">
Expand Down

0 comments on commit 1fbe829

Please sign in to comment.