Skip to content

Commit

Permalink
Update field timer
Browse files Browse the repository at this point in the history
  • Loading branch information
Techno11 committed Oct 5, 2023
1 parent 09956d2 commit 047bf76
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const MatchPlayTimer: FC = () => {
return (
<div id='fgc-body' style={{ backgroundImage: `url(${FGC_BG})` }}>
<div id='timer-info'>
<div id='timer-info-left'>
{/* <div id='timer-info-left'>
<div className='timer-info-left center'>
<span>MATCH</span>
</div>
Expand All @@ -99,7 +99,9 @@ const MatchPlayTimer: FC = () => {
<div className='timer-info-right center'>
<span>{match?.fieldNumber}</span>
</div>
</div>
</div> */}
<div className='timer-info-left'>{match?.name}</div>
<div className='timer-info-right'>Field {match?.fieldNumber}</div>
</div>

<div id={'fgc-timer-container'}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
display: flex;
justify-content: space-between;
align-content: center;
align-items: center;
background-color: #ffffff;
border-radius: 15px;
}

#timer-info-left {
Expand Down Expand Up @@ -56,23 +59,19 @@
}

.timer-info-left {
background-color: #cacaca;
width: 60%;
height: 100%;
font-family: Roboto, sans-serif;
font-weight: bold;
font-size: 2rem;
font-size: 3vw;
padding: 5px;
margin-left: 10%;
}

.timer-info-right {
background-color: #ffffff;
width: 40%;
height: 100%;
font-family: Roboto, sans-serif;
font-weight: bold;
font-size: 1.75rem;
font-size: 3vw;
padding: 5px;
margin-right: 10%;
}

#fgc-timer-top {
Expand Down

0 comments on commit 047bf76

Please sign in to comment.