Skip to content

Commit 6c9f264

Browse files
committed
minor
1 parent 9c67e70 commit 6c9f264

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/static-webserver/client/source/class/osparc/service/ServiceListItem.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ qx.Class.define("osparc.service.ServiceListItem", {
2424
this.set({
2525
width: this.self().ITEM_WIDTH,
2626
height: this.self().ITEM_HEIGHT,
27-
paddingTop: 0,
28-
paddingBottom: 0,
27+
padding: this.self().PADDING,
2928
allowGrowX: true,
3029
focusable: true,
3130
});
@@ -53,7 +52,8 @@ qx.Class.define("osparc.service.ServiceListItem", {
5352
statics: {
5453
LATEST: "latest",
5554
ITEM_WIDTH: 550,
56-
ITEM_HEIGHT: 35,
55+
ITEM_HEIGHT: 32 + 2*4, // thumbnail + 2*PADDING
56+
PADDING: 4,
5757
SERVICE_THUMBNAIL: osparc.product.Utils.getThumbnailUrl()
5858
},
5959

0 commit comments

Comments
 (0)