Skip to content

Commit

Permalink
example: environment - change css
Browse files Browse the repository at this point in the history
text was colored white and therefore invisible.
  • Loading branch information
tmclane committed May 3, 2024
1 parent 735b6b6 commit 5a57ee9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions v3/examples/environment/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
body {
padding-top: 75px;
margin: 0 auto;
color: white;
background-color: white;
color: black;
text-align: -webkit-center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif
}
Expand Down Expand Up @@ -54,9 +55,7 @@
html += "<tr><td>Debug</td><td>"+ result.Debug +"</td></tr>";
if(result.PlatformInfo) {
for (let key in result.PlatformInfo) {
if (obj.hasOwnProperty(key)) {
html += "<tr><td>"+key+"</td><td>"+ result.PlatformInfo[key] +"</td></tr>";
}
}
}
html += "</table>";
Expand Down

0 comments on commit 5a57ee9

Please sign in to comment.