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 two minor style issues #73

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Props {
const { small } = Astro.props;
---
{small && (
<footer class="w-[100vw] h-7 bg-page-background text-secondary-foreground z-999 text-xs tracking-wider hidden md:block">
<footer class="h-7 bg-page-background text-secondary-foreground z-999 text-xs tracking-wider hidden md:block">
<div class={`flex items-center justify-center ${small ? "mt-2" : "my-5"}`}>
<a href="/docs/en" target="_blank" class="hover:text-active-foreground transition-colors">Documentation</a>
<span class="px-2">·</span>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import '../components/styles.css';
<!-- Right Panel with fixed width -->
<div
id="right-panel"
class="hidden md:flex min-w-max items-start h-[calc(100svh-5.5rem)] md:h-[calc(100vh-6.2rem)]"
class="hidden md:flex min-w-max items-start h-[calc(100svh-5.5rem)] md:h-[calc(100vh-6.2rem)] overflow-x-hidden"
>
<Assembled client:idle />
</div>
Expand Down