Skip to content

Commit

Permalink
Update structure of ModelizerDraw
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorin95670 committed Oct 9, 2024
1 parent c7b519d commit 6caae4b
Show file tree
Hide file tree
Showing 20 changed files with 681 additions and 1,045 deletions.
2 changes: 1 addition & 1 deletion src/components/card/ComponentDefinitionCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ onMounted(() => {

<style scoped>
.component-definition-type {
word-break: normal;
word-break: break-all;
text-align: center;
}
</style>
106 changes: 0 additions & 106 deletions src/components/drawer/ModelizerDrawLeftDrawer.vue

This file was deleted.

33 changes: 0 additions & 33 deletions src/components/grid/ComponentDefinitionGrid.vue

This file was deleted.

18 changes: 15 additions & 3 deletions src/components/list/ProjectDetailsList.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<q-list style="max-width: 350px">
<q-list class="project-details-list">
<q-item>
<q-item-section>
<q-breadcrumbs active-color="accent">
Expand Down Expand Up @@ -33,7 +33,12 @@
{{ projectName }}
</q-item-label>
<q-item-label v-if="project.git.repository !== null">
<a :href="project.git.repository" target="_blank">View on git provider</a>
<a
:href="project.git.repository"
target="_blank"
>
View on git provider
</a>
</q-item-label>
</q-item-section>
</q-item>
Expand Down Expand Up @@ -81,5 +86,12 @@ function getProjectImage() {
</script>

<style scoped lang="scss">
.project-details-list {
min-width: 350px;
width: 350px;
max-width: 350px;
min-height: 200px;
height: 200px;
max-height: 200px;
}
</style>
133 changes: 0 additions & 133 deletions src/components/list/VariableList.vue

This file was deleted.

Loading

0 comments on commit 6caae4b

Please sign in to comment.