summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-05-28 23:22:33 +0500
committerilotterytea <iltsu@alright.party>2024-05-28 23:22:33 +0500
commit3ebbd9a281765065201c438d58bb23d3bdb60b4d (patch)
treecd4461a13fd53a5fd050278ed802f4d584f829ca /core
parent62810e3d248a81ab6a4b6bc8b321ecd85d565a0c (diff)
upd: shop item style
Diffstat (limited to 'core')
-rw-r--r--core/src/com/ilotterytea/maxoning/ui/PurchaseItem.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/com/ilotterytea/maxoning/ui/PurchaseItem.java b/core/src/com/ilotterytea/maxoning/ui/PurchaseItem.java
index bca5b3b..bebd9ac 100644
--- a/core/src/com/ilotterytea/maxoning/ui/PurchaseItem.java
+++ b/core/src/com/ilotterytea/maxoning/ui/PurchaseItem.java
@@ -14,15 +14,15 @@ public class PurchaseItem extends Table {
super.setBackground("shop_item");
super.align(Align.left | Align.center);
- super.add(item.icon).size(81f).pad(6f);
+ super.add(item.icon).size(64f).pad(6f);
Table summary = new Table();
summary.align(Align.topLeft);
- Label name = new Label(item.name, skin, "subheader");
+ Label name = new Label(item.name, skin, "item_title");
name.setAlignment(Align.left);
- Label desc = new Label(String.format("%s SQP (%s/click)", MaxonConstants.DECIMAL_FORMAT.format(item.price), MaxonConstants.DECIMAL_FORMAT.format(item.multiplier)), skin);
+ Label desc = new Label(String.format("%s SQP (%s/click)", MaxonConstants.DECIMAL_FORMAT.format(item.price), MaxonConstants.DECIMAL_FORMAT.format(item.multiplier)), skin, "item_price");
desc.setAlignment(Align.left);
summary.add(name).width(desc.getWidth()).row();