|
|
@@ -23,26 +23,35 @@ const { title } = Astro.props;
|
|
|
</html>
|
|
|
<style is:global>
|
|
|
* {
|
|
|
-
|
|
|
/* windows 98 look */
|
|
|
font-smooth: never;
|
|
|
-webkit-font-smoothing: none;
|
|
|
- -moz-osx-font-smoothing: none;
|
|
|
-
|
|
|
+ -moz-osx-font-smoothing: none;
|
|
|
+
|
|
|
image-rendering: pixelated;
|
|
|
|
|
|
font-family: "Pixelated MS Sans Serif", Arial !important;
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
- body {
|
|
|
+ body, html {
|
|
|
background-color: #008080;
|
|
|
+
|
|
|
+
|
|
|
+ /* PLEASE DONT RESIZE PLEASE */
|
|
|
max-width: 100vw;
|
|
|
max-height: 100vh;
|
|
|
- overflow-x: hidden !important;
|
|
|
+
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+
|
|
|
+ overflow-x: hidden;
|
|
|
overflow-y: hidden;
|
|
|
- /* position:relative */
|
|
|
+
|
|
|
+ scroll-behavior: none;
|
|
|
+
|
|
|
+ resize: none;
|
|
|
+
|
|
|
+ overscroll-behavior-y: contain;
|
|
|
+ touch-action: none;
|
|
|
}
|
|
|
|
|
|
.title-bar {
|