From b9193b06281dc34fb61724d86781e4eff3544e66 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sat, 20 Mar 2021 16:38:17 -0600 Subject: [PATCH] Add some extra margin to the first and last child --- web/src/components/ChooseObject.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/src/components/ChooseObject.vue b/web/src/components/ChooseObject.vue index 79c34e1..0a1a457 100644 --- a/web/src/components/ChooseObject.vue +++ b/web/src/components/ChooseObject.vue @@ -99,6 +99,13 @@ export default { height: 50%; } +#ObjectBoard :first-child { + margin-left: 20px; +} +#ObjectBoard :last-child { + margin-right: 20px; +} + .text { justify-content: center; align-items: center;