Skip to content
Merged
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
6 changes: 5 additions & 1 deletion frontend/user/vue-components/ApplicationView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<div class="box box-standard">
<div class="box-header with-border">
<h3 class="box-title">{{ currentApp.appData.image | appName }}</h3>
<div class="box-tools pull-right"></div>
</div>
<div class="box-body">
<img class="pull-right app-logo" :src="currentApp.appData.image.icon_128 | iconSrc"></img>
<h4>Type</h4>
<span>{{ currentApp.appData.image.type == "webapp" ? "Web": "VNC" }} application</span>

Expand Down Expand Up @@ -140,6 +140,10 @@
min-width: 80px;
}

.app-logo {
border-radius: 20%;
}

#application {
width: 100%;
height: 100%;
Expand Down