From be446a039094592d82c2112f2048eb42dc9cf326 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sun, 28 Feb 2021 20:13:04 -0700 Subject: [PATCH] Add a modal that displays all players on the team and which one is the spirit. --- web/src/components/TeamReminder.vue | 74 +++++++++++++++++++++++++---- 1 file changed, 66 insertions(+), 8 deletions(-) diff --git a/web/src/components/TeamReminder.vue b/web/src/components/TeamReminder.vue index e1e0317..965b641 100644 --- a/web/src/components/TeamReminder.vue +++ b/web/src/components/TeamReminder.vue @@ -1,17 +1,56 @@ @@ -31,7 +74,7 @@ export default { @import "../css/theme.css"; @import "../css/style.css"; -#TeamReminder { +#TeamReminder > .container { background-color: var(--background3); border-radius: 0 100% 0 0; height: var(--size); @@ -46,7 +89,7 @@ img.team_1 { width: calc(var(--size) / 1.5); position: absolute; bottom: 7px; - left: 7px;; + left: 7px; } img.team_2 { @@ -55,4 +98,19 @@ img.team_2 { left: calc(var(--size) / 8); position: absolute; } + + +h1, h2, p { + margin: 5px 0; +} + +.team-list { + justify-content: center; + flex-direction: row; + display: flex; +} + +.team { + width: 40%; +} \ No newline at end of file