Skip to content

Commit cb2d4dc

Browse files
authored
Move custom CSS and user-selected theme styles to the end of the body… (#1744)
1 parent 8587ffc commit cb2d4dc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

frontend/public/index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,6 @@
160160
transform: scale(1.0);
161161
}
162162
}
163-
{{ .htmlVars.customCSS }}
164-
{{ .htmlVars.userSelectedTheme }}
165163
</style>
166164
</head>
167165

@@ -187,6 +185,10 @@
187185
{{end}}
188186
<script type="module" src="/src/main.ts"></script>
189187

188+
<style>
189+
{{ .htmlVars.customCSS }}
190+
{{ .htmlVars.userSelectedTheme }}
191+
</style>
190192
</body>
191193

192194
</html>

0 commit comments

Comments
 (0)