Clean up some styling in scouting app.
Correctly set columns for scores.
Switch margin to padding to not mess up bootstrap styles.
Add back button on screens that can go back.
Change-Id: I25de3c6de2d93564bfbe74cd7aa3bb1de933a4e3
Signed-off-by: Alex Perry <alex.perry96@gmail.com>
diff --git a/scouting/www/entry/entry.component.css b/scouting/www/entry/entry.component.css
index 520b6d2..cec2a47 100644
--- a/scouting/www/entry/entry.component.css
+++ b/scouting/www/entry/entry.component.css
@@ -1,8 +1,20 @@
* {
- margin: 10px;
+ padding: 10px;
+}
+
+.center-column {
+ display: flex;
+ align-items: stretch;
+ flex-direction: column;
+ text-align: center;
+}
+
+.buttons {
+ display: flex;
+ justify-content: space-between;
}
textarea {
width: 300px;
height: 150px;
-}
\ No newline at end of file
+}