Skip to content

Commit

Permalink
More minor changes before launch
Browse files Browse the repository at this point in the history
  • Loading branch information
PvtVoid committed May 29, 2024
1 parent 6614871 commit 96bd185
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
}

.chatBoxContainer {
padding-top: 1dvh;
position: relative;
width: 100%;
flex-grow: 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ export default function Menu() {
<div className={styles.menuList}>
<SkipAttackReactionsToggle />
<SkipDefenseReactionsToggle />
</div>
<div className={styles.menuList}>
<Skip1PowerAttacksToggle />
<SkipAllAttacksToggle />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@

.bottomGroup {
width: 100%;
padding-top: 1dvh;
height: 100%;
display: flex;
flex-direction: column;
Expand Down
2 changes: 1 addition & 1 deletion src/routes/game/components/rightColumn/RightColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export default function RightColumn() {
<TurnNumber />
<LastPlayed />
<PriorityControl />
{isStreamerMode ?? <StreamerBox />}
</div>
<div className={styles.bottomGroup}>
{isStreamerMode ? <StreamerBox /> : <PhaseTracker />}
<ChatBox />
</div>
</div>
Expand Down

0 comments on commit 96bd185

Please sign in to comment.