Skip to content

Commit

Permalink
Merge pull request #6107 from ProcessMaker/feature/FOUR-13375
Browse files Browse the repository at this point in the history
Feature/four 13375
  • Loading branch information
ryancooley committed Jan 30, 2024
2 parents 99d73c1 + ef69989 commit 1f7681c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
8 changes: 6 additions & 2 deletions resources/js/processes/designer/Asset.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:class="icon"
:style="{color: color}"
/>
<p>{{ $t(asset_name) }}</p>
<p class="m-0">{{ $t(asset_name) }}</p>
</span>
</b-card-text>
</template>
Expand All @@ -32,9 +32,13 @@ export default {
gap: 4px;
flex: 1 0 0;
align-self: stretch;
margin-bottom: 10px;
margin: 10px 0px;
}
i {
font-size: 32px;
}
p {
font-size: 16px;
font-weight: 400;
}
</style>
16 changes: 12 additions & 4 deletions resources/js/processes/designer/Assets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</b-navbar-brand>
</b-navbar>

<div class="mt-3">
<div class="mx-2">
<b-card-group deck>
<b-card
v-for="(asset, index) in assetsCore"
Expand Down Expand Up @@ -38,7 +38,7 @@
</b-card>
</b-card-group>
</div>
<div class="mt-3">
<div class="mx-2">
<b-card-group deck>
<b-card
v-for="(asset, index) in assetsPackage"
Expand Down Expand Up @@ -166,14 +166,22 @@ export default {
background-color: #f9f9f9;
padding: 0rem 1rem 1rem 1rem;
}
.b-card {
margin: 5px;
.card {
margin: 8px;
border: none;
padding: 0;
border-radius: 8px;
box-shadow: 0px 0px 11px 0px rgba(98, 124, 144, 0.20);
}
.b-card-group {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 10px;
}
.card-body {
display: flex;
justify-content: center;
align-items: center;
}
</style>

0 comments on commit 1f7681c

Please sign in to comment.