Skip to content

Commit 3c48c45

Browse files
committed
chore: next.js app build fail fix (#develop)
1 parent 26518af commit 3c48c45

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

.github/workflows/deploy-nextjs.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@ jobs:
3535
with:
3636
node-version: ${{ env.DEFAULT_NODE_VERSION }}
3737

38+
- name: Update Corepack
39+
run: |
40+
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
41+
npm install -g corepack@latest
42+
echo "After : corepack version => $(corepack --version)"
43+
corepack enable
44+
pnpm --version
45+
46+
- name: Install sharp for Next.js image optimization
47+
run: cd services/one-app && pnpm install sharp
48+
3849
- name: Install dependencies
3950
uses: ./.github/actions/pnpm-install
4051

services/ahhachul.com/src/components/domain/home/headerActions/HomeHeaderActions.styled.tsx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ export const button = css`
2727
export const menu = css`
2828
display: flex;
2929
flex-direction: column;
30-
gap: 8px;
30+
gap: 4px;
3131
3232
width: 192px;
3333
background-color: white;
34-
border-radius: 8px;
34+
border-radius: 12px;
3535
padding: 8px;
3636
box-shadow:
3737
0 10px 15px rgba(0, 0, 0, 0.1),
3838
0 4px 6px rgba(0, 0, 0, 0.05);
3939
4040
overflow: hidden;
4141
position: absolute;
42-
top: 16px;
42+
top: 26px;
4343
left: -94px;
4444
`;
4545

@@ -49,20 +49,19 @@ export const option = css`
4949
gap: 8px;
5050
width: 100%;
5151
border-radius: 6px;
52-
padding: 8px;
52+
padding: 12px 8px;
5353
5454
color: #272727;
55-
font-size: 14px;
55+
font-size: 16px;
5656
font-weight: 500;
5757
white-space: nowrap;
5858
cursor: pointer;
5959
transition:
6060
background-color 0.2s,
6161
color 0.2s;
6262
63-
&:active {
64-
background-color: #c7d2fe;
65-
color: #4f46e5;
63+
&:first-of-type {
64+
font-weight: 700;
6665
}
6766
6867
@media (hover: hover) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export default function Page() {
2-
return <main className="flex min-h-screen flex-col text-black bg-white ">MyPage</main>;
2+
return <main className="flex min-h-screen flex-col text-black bg-white ">마이 페이지</main>;
33
}

0 commit comments

Comments
 (0)