Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: viewport of website #3031

Merged
merged 2 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion lix/website/src/pages/index/+Page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,12 @@ export const Page = () => html` ${header}
<h2 class="mt-12 mb-4 text-xl font-medium text-slate-950">Blog posts</h2>
<p class="text-slate-600 leading-[1.7]">
Find the latest blog posts and updates on our
<a href="https://opral.substack.com/" target="_blank">Substack</a>.
<a
class="text-slate-950 underline decoration-slate-300 font-medium hover:decoration-slate-950"
href="https://opral.substack.com/"
target="_blank"
>Substack</a
>.
</p>
<ul class="leading-[2] pl-6 mb-8">
${blogPosts.map(
Expand Down
1 change: 1 addition & 0 deletions lix/website/src/renderer/+onRenderHtml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export async function onRenderHtml(pageContext: PageContextServer) {
<head>
<title>Lix - Change Control System</title>
<link rel="icon" type="image/x-icon" href="/favicon.svg">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=0">
</head>
<body>
${dangerouslySkipEscape(content)}
Expand Down
Loading