aboutsummaryrefslogtreecommitdiff
path: root/src/main.odin
diff options
context:
space:
mode:
authorSan Jacobs2023-10-14 12:18:23 +0200
committerSan Jacobs2023-10-14 12:18:23 +0200
commitd6cb7ac37d86d0c4ee03982813b94275fd62016a (patch)
tree2c9a79cda5b63eb36537b882d9b3c2ba9eb31d4a /src/main.odin
parent56b701ded16bad6f4599be61263c1574d5297288 (diff)
downloadsatscalc-d6cb7ac37d86d0c4ee03982813b94275fd62016a.tar.gz
satscalc-d6cb7ac37d86d0c4ee03982813b94275fd62016a.tar.bz2
satscalc-d6cb7ac37d86d0c4ee03982813b94275fd62016a.zip
Added cute padding to text
Diffstat (limited to 'src/main.odin')
-rw-r--r--src/main.odin3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.odin b/src/main.odin
index 9689598..ac3f693 100644
--- a/src/main.odin
+++ b/src/main.odin
@@ -151,9 +151,10 @@ when true {
top_bar := panel(BGCOLOR)
oui.set_cut(master_container, .Top)
oui.set_height(top_bar, 30)
+ oui.set_margin(top_bar, 6)
oui.item_insert(master_container, top_bar)
- date_label := label("Date", font)
+ date_label := label("Date", font, .Left)
oui.item_insert(top_bar, date_label)
bottom_bar := panel(PBGCOLOR)