diff --git a/src/routes/(app)/+layout.svelte b/src/routes/(app)/+layout.svelte index 4aa3b8c..e2fa95f 100644 --- a/src/routes/(app)/+layout.svelte +++ b/src/routes/(app)/+layout.svelte @@ -177,6 +177,7 @@ display: flex; justify-content: right; flex-wrap: wrap; + flex: 1 0 auto; @include mobile { align-self: center; @@ -188,7 +189,6 @@ } } - .wallet-status { vertical-align: top; display: flex; diff --git a/src/routes/(app)/players/+page.svelte b/src/routes/(app)/players/+page.svelte index dd48c85..f110ebf 100644 --- a/src/routes/(app)/players/+page.svelte +++ b/src/routes/(app)/players/+page.svelte @@ -106,7 +106,7 @@ @include mobile { display: block; max-width: none; - width: 100%; + // width: 100%; } li { @@ -124,7 +124,7 @@ @include mobile { display: flex; flex-direction: row; - width: 100%; + // width: 100%; flex-wrap: wrap; gap: 1ex; @@ -137,9 +137,12 @@ } > .joined { - text-align: end; + margin-left: 4ex; flex: 1 0 100%; - + } + + &:not(:last-child) { + margin-bottom: 1em; } } }