Skip to content

Commit

Permalink
Fix layout
Browse files Browse the repository at this point in the history
  • Loading branch information
JSerZANP committed May 5, 2024
1 parent ad05f42 commit d6cc285
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/web/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default async function Page({
searchParams: { [key: string]: string | string[] | undefined };
}) {
return (
<div className={styles.preview}>
<div className={`article ${styles.preview}`}>
<Head>
<title>Shaku</title>
</Head>
Expand Down
8 changes: 4 additions & 4 deletions examples/web/css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,25 +74,25 @@ button:hover {
}

@media screen and (max-width: 1700px) {
body {
.article {
margin: 0 500px 0 auto;
}
}

@media screen and (max-width: 1500px) {
body {
.article {
margin: 0 400px 0 auto;
}
}

@media screen and (max-width: 1300px) {
body {
.article {
margin: 0 300px 0 auto;
}
}

@media screen and (max-width: 1000px) {
body {
.article {
margin: 0 auto;
}
}

0 comments on commit d6cc285

Please sign in to comment.