Skip to content

Commit

Permalink
fix css for capabilities panel
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Oct 12, 2022
1 parent 1b20010 commit 7c368f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</span>
</div>
<div class="card-body px-0 ml-n2 d-flex flex-wrap justify-content-center">
<div wicket:id="capabilities" class="ml-2 mb-2 d-flex justify-content-center" style="flex:8%">
<div wicket:id="capabilities" class="ml-2 mb-2 d-flex justify-content-center" style="flex:9%">
<a wicket:id="capabilityButton"
class="btn btn-app m-0 w-100 d-flex flex-column"
style="aspect-ratio: 4/3!important; height: auto; max-height:100px">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,9 @@ private String getIcon(Class capability) {
if (AsyncUpdateCapabilityType.class.isAssignableFrom(capability)) {
return "fa fa-arrows-turn-to-dots";
}
if (SchemaCapabilityType.class.isAssignableFrom(capability)) {
return "fa fa-table-cells";
}
return "fa fa-circle";
}

Expand Down

0 comments on commit 7c368f3

Please sign in to comment.