From 6ec2b04feddc618485aabe5ef5d758b150bc0484 Mon Sep 17 00:00:00 2001 From: jiisloth Date: Thu, 25 Apr 2024 00:08:40 +0300 Subject: [PATCH] rearanged things nin 169 3way --- src/lib/layouts/SixteenNine3Way.svelte | 27 ++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/src/lib/layouts/SixteenNine3Way.svelte b/src/lib/layouts/SixteenNine3Way.svelte index 9dde860..eee58c1 100644 --- a/src/lib/layouts/SixteenNine3Way.svelte +++ b/src/lib/layouts/SixteenNine3Way.svelte @@ -5,6 +5,7 @@ import Counters from '$lib/components/Counters.svelte'; import DonationBar from '$lib/components/DonationBar.svelte'; import Frame from '$lib/components/Frame.svelte'; + import GameIcon from '$lib/components/GameIcon.svelte'; import GameData from '$lib/components/GameData.svelte'; import GameTimer from '$lib/components/GameTimer.svelte'; import Logo from '$lib/components/Logo.svelte'; @@ -13,6 +14,7 @@ import Sponsors from '$lib/components/Sponsors.svelte'; import type { LayoutBackground, LayoutConf, LayoutDimension, LayoutHole } from '$lib/models/LayoutConf'; import { fixedPlayerNames } from '$lib/stores/ConfStore'; + import { currentGame } from "$lib/stores/GameStore"; import { themestore } from '$lib/stores/ThemeStore'; import PlayerNamesGrid from '$lib/components/PlayerNamesGrid.svelte'; import { player } from './utils'; @@ -122,10 +124,23 @@ width={gameWidth-borderWidth/2} height={gameHeight/2+borderWidth} > -
- - -
+ +
+
+ + +
+
+ +
+
+ + + +
+
+
+
@@ -188,4 +203,8 @@ bottom: calc(0px - var(--border-width)); height: calc(65px + var(--border-width)); } + #gamedatarow{ + padding-top: 20px; + justify-content: space-around; + }