Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI fixes #367

Merged
merged 1 commit into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions BoxGame/src/components/box/box.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,27 @@ svg.svg-inline--fa.fa-arrow-left.fa-w-14 {
}
.home-link{
position: absolute;
right: 0;
right: 10px;
/* padding: 15px; */
top: 8px;
background: #f4f4f4;
width: 40px;
height: 40px;
padding: 11px;
box-sizing: border-box;
border-radius: 50%;
}
.back-link{
position: absolute;
left: 0;
left: 10px;
top: 8px;
background: #f4f4f4;
width: 40px;
height: 40px;
padding: 11px 12px;
box-sizing: border-box;
border-radius: 50%;

}
.box-white{
height: 100%;
Expand Down
9 changes: 4 additions & 5 deletions JewelsPro/src/components/jewels/Board.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -371,12 +371,11 @@ class Board extends React.Component<BoardProps, DiamondState> {
return (
<div>
<div className="countdown-timer">
{timer}
{negSection}
{confirmModal}
{this.props.level}/{this.state.totalLevels.toString()}
<br/>
<div>{timer}</div>
<div className="level">{i18n.t("LEVEL ")}{this.props.level}/{this.state.totalLevels.toString()}</div>
</div>
{negSection}
{confirmModal}
{board}
{jewelInfo}
</div>
Expand Down
36 changes: 29 additions & 7 deletions JewelsPro/src/components/jewels/jewels.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.