Skip to content

Commit 28fde83

Browse files
Display Dynamic Display Stats
1 parent b7e9e0e commit 28fde83

7 files changed

+333
-128
lines changed

.eslintcache

+1-1
Large diffs are not rendered by default.

src/screens/components/BlockDisplay.css

+49
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@media screen and (min-width: 600px) {
12
.BlockStatsDisplayRow {
23
display: flex;
34
margin: 10px;
@@ -41,5 +42,53 @@
4142
justify-content: space-around;
4243
line-height:30px;
4344
}
45+
}
46+
47+
@media screen and (max-width: 600px) {
48+
.BlockStatsDisplayRow {
49+
display: flex;
50+
flex-direction: column;
51+
margin: 0px;
4452

53+
}
54+
55+
.BlockStatDisplayContainer {
56+
57+
/* position: relative; */
58+
top: 50%;
59+
right: 50%;
60+
/* -ms-transform: translate(50%,-50%); */
61+
/* transform: translate(50%,-50%); */
62+
width: 100%;
63+
margin-right: 10px;
64+
65+
}
66+
67+
.BlockStatGridDisplay {
68+
/*
69+
background-color: black;
70+
background-image: linear-gradient(#749494, #333536);
71+
*/
72+
margin: auto;
73+
/*
74+
-webkit-box-shadow: 0px 0px 100px 22px rgba(255,255,255,0.17);
75+
box-shadow: 0px 0px 100px 22px rgba(255,255,255,0.17);
76+
*/
77+
width: 10vw;
78+
}
79+
80+
.BlockStatGridDisplaygridRow{
81+
padding: 0;
82+
margin: 0;
83+
list-style: none;
84+
display: -webkit-box;
85+
display: -moz-box;
86+
display: -ms-flexbox;
87+
display: -webkit-flex;
88+
display: flex;
89+
-webkit-flex-flow: row;
90+
justify-content: space-around;
91+
line-height:30px;
92+
}
93+
}
4594

src/screens/components/BlockDisplay.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class BlockDisplay extends React.Component {
1616
{this.props.blockData.map((row, indexRow) =>
1717
<div key={indexRow} className="BlockStatGridDisplaygridRow">
1818
{row.map((blockNumber, indexColumn) =>{
19-
let classNames = "gridBlock " + mapBlockNumberToColorClass(blockNumber);
19+
let classNames = "gridBlock gridBlockDisplay " + mapBlockNumberToColorClass(blockNumber);
2020
let divKey = `${indexRow}-${indexColumn}`;
2121
return(
2222
<div key={divKey} className={classNames}></div>

src/screens/components/GameGridBlock.css

+5
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,9 @@
4646
content:'';
4747
float:left;
4848
padding-top:100%;
49+
}
50+
51+
.gridBlockDisplay {
52+
border: none !important;
53+
4954
}

0 commit comments

Comments
 (0)