Mobile defense/firefox pixelation

This commit is contained in:
MaxRobinsonTheGreat
2020-07-23 15:52:02 -06:00
parent b0af739747
commit cafb444417
4 changed files with 310 additions and 7 deletions

15
dist/css/style.css vendored
View File

@@ -19,7 +19,10 @@ body{
width: 100%;
text-align: center;
transform: scale(1);
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated;
image-rendering: crisp-edges;
}
#env-canvas {
@@ -49,7 +52,10 @@ body{
}
img {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated;
image-rendering: crisp-edges;
width: 60%;
border-radius: 10px;
}
@@ -152,7 +158,10 @@ button:hover{
bottom: 0;
}
#editor-env {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated;
image-rendering: crisp-edges;
height: 195px;
width: 195px;
}