Skip to content

Commit

Permalink
Fix padding of v-divider (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
seicke authored Nov 28, 2024
1 parent 02a8ad7 commit 801280d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions aas-web-ui/src/components/SubmodelElementView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
:semantic-title="'SemanticID'"></SemanticID>
</v-list>
<v-divider></v-divider>
<v-list nav class="px-4 pt-0 pb-0">
<v-list nav class="px-4 pt-0 pb-5">
<!-- SubmodelELement Representation for different modelTypes -->
<Submodel
v-if="submodelElementData.modelType === 'Submodel'"
Expand Down Expand Up @@ -100,8 +100,7 @@
v-if="
submodelElementData.conceptDescriptions &&
submodelElementData.conceptDescriptions.length > 0
"
class="mt-5"></v-divider>
"></v-divider>
<v-list
v-if="
submodelElementData.conceptDescriptions &&
Expand All @@ -118,7 +117,7 @@
</v-list-item>
</v-list>
<!-- Last Sync -->
<v-divider class="mt-5"></v-divider>
<v-divider></v-divider>
<v-list class="py-0">
<v-list-item>
<v-list-item-subtitle>
Expand Down

0 comments on commit 801280d

Please sign in to comment.