Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[수정] MainBottom 삭제 #100

Merged
merged 3 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/dashboard/BluePrint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ const onClick = () => {
</div>
</v-card-item>
<v-card-actions>
<v-btn @click="onClick" class="save-btn"> 만들기 </v-btn>
<v-btn @click="showDialog = false" class="cancel-btn">
취소
</v-btn>
<v-btn @click="onClick" class="save-btn"> 만들기 </v-btn>
</v-card-actions>
</v-card>
</v-dialog>
Expand Down
23 changes: 0 additions & 23 deletions src/components/dashboard/MainBottom.vue

This file was deleted.

2 changes: 1 addition & 1 deletion src/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,5 @@ body,
height: 80%;
}
.container-size {
height: 100%;
height: 100vh;
}
4 changes: 0 additions & 4 deletions src/views/dashboard/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,12 @@
<v-row class="row-vueflow">
<v-col><NodePlane @nodeClicked="handleRightDrawer" /></v-col>
</v-row>
<v-row>
<v-col><MainBottom /></v-col>
</v-row>
</v-container>
</v-main>
</template>

<script setup>
import NodePlane from '@/components/node/NodePlane';
import MainBottom from '@/components/dashboard/MainBottom';
import DrawerInput from '@/components/aws/DrawerInput.vue';
import { ref } from 'vue';
import store from '@/store';
Expand Down
Loading