diff --git a/src/locales/en.json b/src/locales/en.json index 797fbc07..67c6173c 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -6,13 +6,13 @@ "advancement": "Advancement", "dimension": "Dimension", "dimension-type": "Dimension Type", - "worldgen/biome": "Worldgen Biome", - "worldgen/carver": "Worldgen Carver", - "worldgen/feature": "Worldgen Feature", - "worldgen/structure-feature": "Worldgen Structure Feature", - "worldgen/surface-builder": "Worldgen Surface Builder", - "worldgen/processor-list": "Worldgen Processor List", - "worldgen/template-pool": "Worldgen Template Pool", + "worldgen/biome": "Biome", + "worldgen/carver": "Carver", + "worldgen/feature": "Feature", + "worldgen/structure-feature": "Structure Feature", + "worldgen/surface-builder": "Surface Builder", + "worldgen/processor-list": "Processor List", + "worldgen/template-pool": "Template Pool", "language": "Language", "reset": "Reset", "copy": "Copy", diff --git a/src/styles/global.css b/src/styles/global.css index adfb75c3..446ec6ba 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -261,7 +261,7 @@ body { } .errors { - position: absolute; + position: fixed; bottom: 17px; right: 17px; margin: 5px; @@ -394,8 +394,14 @@ body { } } -@media screen and (max-width: 410px) { +@media screen and (max-width: 480px) { .header-title h2 { font-size: 18px; } } + +@media screen and (min-width: 581px) and (max-width: 640px) { + .header-title h2 { + font-size: 22px; + } +}