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

Changed App.html to index.html #348

Merged
merged 1 commit into from
Oct 10, 2022
Merged
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
2 changes: 1 addition & 1 deletion src/routes/(inner)/guides/frameworks/vite/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<section class="space-y-4">
<h2>Getting Started</h2>
<p>To begin, let's make a couple quick modifications to our app. This ensures our layout will display properly.</p>
<h3>Adjust App.html</h3>
<h3>Adjust index.html</h3>
<p>Open <code>/src/index.html</code> and add the following classes so our <em>app</em> div fills the canvas size.</p>
<CodeBlock language="html" code={`<div id="app" class="h-full overflow-hidden"></div>`.trim()} />
<p>Optionally you can enable Dark Mode by default by adding the <code>.dark</code> class to your <em>HTML</em> element at the top of the page.</p>
Expand Down