summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcus Lundblad <ml@dfupdate.se>2022-11-25 21:54:17 +0100
committerMarcus Lundblad <ml@dfupdate.se>2022-11-27 23:19:26 +0100
commit0298af658f74d5ab389fe6d3ed0819b2334a479a (patch)
treee8dad2422ddd8ecfbd62a8d02f93e8e15dcdbaab /src
parent1f6271805851f0a20763170556fe1f132eacc8f4 (diff)
downloadgnome-maps-0298af658f74d5ab389fe6d3ed0819b2334a479a.tar.gz
placeView: Decrease margins
Diffstat (limited to 'src')
-rw-r--r--src/placeView.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/placeView.js b/src/placeView.js
index b0b61a3f..e62b7be9 100644
--- a/src/placeView.js
+++ b/src/placeView.js
@@ -481,8 +481,8 @@ export class PlaceView extends Gtk.Box {
let box = new Gtk.Box({ orientation: Gtk.Orientation.HORIZONTAL,
visible: true,
- marginStart: 18,
- marginEnd: 18,
+ marginStart: 12,
+ marginEnd: 12,
marginTop: 6,
marginBottom: 6,
spacing: 12 });
@@ -522,7 +522,7 @@ export class PlaceView extends Gtk.Box {
if (grid) {
widget = new Gtk.Grid({ visible: true,
- column_spacing: 8 });
+ column_spacing: 6 });
for (let i = 0; i < grid.length; i++) {
let row = grid[i];
@@ -560,7 +560,7 @@ export class PlaceView extends Gtk.Box {
halign: Gtk.Align.FILL });
if (type === 'wikipedia') {
- box.marginTop = 14;
+ box.marginTop = 12;
box.marginBottom = 18;
this._wikipediaLabel = widget;
}