Skip to content

Commit

Permalink
seeing if this fixes it
Browse files Browse the repository at this point in the history
  • Loading branch information
namishh committed Dec 15, 2024
1 parent 2e26367 commit 25595a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions src/app.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
import {Router} from "@solidjs/router";
import {FileRoutes} from "@solidjs/start/router";
import {Suspense} from "solid-js";
import { Router } from "@solidjs/router";
import { FileRoutes } from "@solidjs/start/router";
import { Suspense } from "solid-js";
import "./app.css";

export default function App() {
return (
<Router
base={import.meta.env.SERVER_BASE_URL}
root={(props) => (
<main class="fixed">
<main>
<Suspense>{props.children}</Suspense>
</main>
)}>
)}
>
<FileRoutes />
</Router>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Art.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const AsciiArtComponent: Component<AsciiArtComponentProps> = (props) => {

return (
<div
class="ascii-art-container absolute text-center text-rose-800/90"
class="ascii-art-container absolute text-center text-rose-700 md:text-rose-800/90"
style={{
"font-size": `${2.5 / scale()}px`,
"line-height": `${1.2 / scale()}px`,
Expand Down

0 comments on commit 25595a0

Please sign in to comment.