From 5fb6098053c65a5183fddbce0ac0e794445b5989 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sun, 2 Aug 2020 19:20:06 -0400 Subject: [PATCH] Fix the nav button holder being too big --- src/components/Explore.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Explore.vue b/src/components/Explore.vue index 31dc5bd..7f8223f 100644 --- a/src/components/Explore.vue +++ b/src/components/Explore.vue @@ -152,8 +152,8 @@ export default class Explore extends Vue { "Southwest South Southeast"; grid-template-rows: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; - width: 100%; - height: 100%; + width: calc(100% - 16px); + height: calc(100% - 16px); max-width: 1000px; justify-self: end; }