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

Update v1.0.0-beta.7 #7

Merged
merged 6 commits into from
Sep 10, 2023
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
2 changes: 1 addition & 1 deletion src/components/core/Alert/Alert.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
height: fit-content;
width: 100%;
padding: 1rem 0;
background-color: rgba(var(--background-rgb), 0.5);
background-color: rgba(var(--background-rgb), 0.3);
backdrop-filter: blur(2px);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
.background {
width: 100%;
height: 0px;
border-left: 32rem solid transparent;
border-right: 32rem solid transparent;
border-top: 90vh solid red;
border-top: 70vh solid red;
filter: blur(120px);
top: 0;
opacity: 0.15;
Expand Down
2 changes: 1 addition & 1 deletion src/layout/Header/Header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
align-items: center;
justify-content: space-between;
padding: 0 4rem;
background-color: rgba(var(--background-rgb), 0.5);
background-color: rgba(var(--background-rgb), 0.3);
backdrop-filter: blur(2px);
top: 0;
left: 0;
Expand Down
5 changes: 2 additions & 3 deletions src/layout/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,12 @@ export default function Layout({
<title>{metadata.title}</title>
</Head>
<main className={styles.main}>
<BackgroundEffect />
<Header />
<Alert id="poweredBy">
<Icon icon="mdi:information" />
This library is powered by the{' '}
<Link.Simple
showIcon={false}
href=""
href="https://hawapi.theproject.id/"
name="HawAPI - A Free and Open Source API
for Stranger Things"
/>
Expand All @@ -124,6 +122,7 @@ export default function Layout({
justifyContent: isCentered ? 'center' : undefined,
}}
>
<BackgroundEffect />
{children}
</div>
</main>
Expand Down
6 changes: 5 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ export default function HomePage() {
<Title.Effect title="Hawbrary" />
<p className={styles.description}>
A Showcase for the{' '}
<Link.Simple href="https://github.com/HawAPI/HawAPI" name="HawAPI" />{' '}
<Link.Simple
showIcon={false}
href="https://github.com/HawAPI/HawAPI"
name="HawAPI"
/>{' '}
project
</p>
<span className={styles.links}>
Expand Down