From c7ff88cac8bfc83bc63c389dea061220c7adfa98 Mon Sep 17 00:00:00 2001 From: astumpff2 <astumpff2@huskers.unl.edu> Date: Sun, 30 Aug 2020 14:33:21 -0500 Subject: [PATCH] Completed checkpoint 4 --- .../invisibleMaze/invisibleMaze.module.css | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/minimal-app/src/features/invisibleMaze/invisibleMaze.module.css b/minimal-app/src/features/invisibleMaze/invisibleMaze.module.css index 29604f3..e55ae8e 100644 --- a/minimal-app/src/features/invisibleMaze/invisibleMaze.module.css +++ b/minimal-app/src/features/invisibleMaze/invisibleMaze.module.css @@ -1,31 +1,31 @@ .panel { - width: 100px; - height: 50px; + width: 50%; + height: 5em; } .create { - width: 100px; - height: 50px; + width: 50%; + height: 5em; font-weight: bold; } .reset { - width: 100px; - height: 50px; + width: 50%; + height: 5em; font-weight: bold; } .play { - width: 100px; - height: 50px; + width: 50%; + height: 5em; font-weight: bold; } .maze{ display: flex; - flex-flow: row, nowrap; - padding: 10px; + flex-flow: row nowrap; + padding: .5em; align-content: center; } .controlPanel{ display: flex; background-color: maroon; - padding: 10px; - flex-flow: row, nowrap; + padding: 1em; + flex-flow: row nowrap; } \ No newline at end of file -- GitLab