Skip to content

Commit

Permalink
css
Browse files Browse the repository at this point in the history
  • Loading branch information
kimkee committed Jan 13, 2024
1 parent d27d5d4 commit 5be541b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/home/page.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* 홈 */
.body>.wrap{}
.container{ align-items: center; justify-content: center; }
.page.home{ align-items: center; justify-content: center; }
.contents{}
.box { text-align: center; position: relative; }
.box::before{content:"";filter: blur(45px); position: absolute; left: 20%; top: 0%; transform: translate(-50%, -50%);display: block; width: 500rem; height: 220rem; display: block; background: var(--secondary-glow);}
Expand Down
6 changes: 2 additions & 4 deletions src/app/products/[id]/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Image from 'next/image'
import Head from 'next/head';
import { usePathname, useRouter, useParams } from 'next/navigation';
import '../page.css'
// import { cookies } from 'next/headers';

import List from '../List.jsx';
import ui from '../../ui.js';
export default function Page() {
Expand All @@ -12,12 +12,10 @@ export default function Page() {

return (
<div className="container page prds">
<div class="dd">fdsfsdf</div>
<div class="dd">fdsfsdf</div>
<main className={`contents`}>

<div class="pop">{`params.id = ${params.id}`}</div>



</main>
</div>
Expand Down

0 comments on commit 5be541b

Please sign in to comment.