Skip to content

Commit 776e4f4

Browse files
authored
Merge pull request #132 from sipe-team/delete/blog-button
delete: blog button 제거
2 parents 2a4e555 + 5fa780f commit 776e4f4

File tree

10 files changed

+976
-428
lines changed

10 files changed

+976
-428
lines changed

.pnp.loader.mjs

Lines changed: 909 additions & 364 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.yarnrc.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ npmScopes:
77
npmRegistryServer: 'https://npm.pkg.github.com'
88
npmAuthToken: "${NODE_ENV==='local' ? '' : YARN_NPM_AUTH_TOKEN}"
99

10-
1110
supportedArchitectures:
1211
cpu:
1312
- x64

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
</a>
1616

1717
## 🐛 Bug reporting
18+
1819
[Issues](https://github.com/sipe-team/sipe.team/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc)
1920

2021
## 🔒 LICENSE
22+
2123
This Project is [MIT LICENSE](https://github.com/sipe-team/sipe.team/blob/main/LICENSE).

src/components/global/Navigation/index.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import { useEffect, useState } from 'react';
44

5+
import type { Route } from 'next';
56
import Link from 'next/link';
67
import { usePathname } from 'next/navigation';
78

@@ -17,12 +18,11 @@ import { displayApplication, getCurrentStatus } from '@/libs/utils/recruit';
1718

1819
import styles from './index.module.scss';
1920

20-
const menus: { name: string; path: string; isExternal?: boolean }[] = [
21+
const menus: { name: string; path: Route }[] = [
2122
{ name: 'About', path: '/about' },
2223
{ name: 'Recruit', path: '/recruit' },
2324
{ name: 'People', path: '/people' },
2425
{ name: 'Activity', path: '/activity' },
25-
{ name: 'Blog', path: 'https://blog.sipe.team', isExternal: true },
2626
];
2727

2828
function Navigation() {
@@ -84,7 +84,6 @@ function Navigation() {
8484
buttonType="menu"
8585
active={menu.path === pathname}
8686
href={menu.path}
87-
isExternalLink={menu.isExternal}
8887
>
8988
{menu.name}
9089
</Button>
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
.border {
2-
--border-size: 15px;
3-
--border-angle: 0turn;
4-
pointer-events: none;
5-
background-image: conic-gradient(
6-
from var(--border-angle) at 50% 50%,
7-
rgba(255, 255, 255, 0.5) 0deg,
8-
rgba(255, 255, 255, 0) 60deg,
9-
rgba(255, 255, 255, 0) 310deg,
10-
rgba(255, 255, 255, 0.5) 360deg
11-
);
12-
background-size: calc(100% - (var(--border-size) * 2))
13-
calc(100% - (var(--border-size) * 2)),
14-
cover;
15-
position: absolute;
16-
bottom: calc(50% - (var(--size) / 2));
17-
left: calc(50% - (var(--size) / 2));
18-
width: var(--size);
19-
height: var(--size);
20-
background-position: center center;
21-
background-repeat: no-repeat;
2+
--border-size: 15px;
3+
--border-angle: 0turn;
4+
pointer-events: none;
5+
background-image: conic-gradient(
6+
from var(--border-angle) at 50% 50%,
7+
rgba(255, 255, 255, 0.5) 0deg,
8+
rgba(255, 255, 255, 0) 60deg,
9+
rgba(255, 255, 255, 0) 310deg,
10+
rgba(255, 255, 255, 0.5) 360deg
11+
);
12+
background-size:
13+
calc(100% - (var(--border-size) * 2)) calc(100% - (var(--border-size) * 2)),
14+
cover;
15+
position: absolute;
16+
bottom: calc(50% - (var(--size) / 2));
17+
left: calc(50% - (var(--size) / 2));
18+
width: var(--size);
19+
height: var(--size);
20+
background-position: center center;
21+
background-repeat: no-repeat;
2222

23-
mask: var(--svg-mask);
24-
mask-size: (var(--area-width) + 4px) (var(--area-height) + 4px);
25-
mask-position: center center;
26-
mask-repeat: no-repeat;
27-
mask-mode: alpha;
23+
mask: var(--svg-mask);
24+
mask-size: (var(--area-width) + 4px) (var(--area-height) + 4px);
25+
mask-position: center center;
26+
mask-repeat: no-repeat;
27+
mask-mode: alpha;
2828
}
2929

3030
.area {
31-
position: relative;
31+
position: relative;
3232
}

src/components/organisms/home/RecruitmentStatusSection/index.module.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
}
1414

1515
.buttonWrapper {
16-
1716
@include mobile {
1817
gap: 12px;
1918
}
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.timerWrapper {
2-
display: flex;
3-
flex-direction: column;
4-
align-items: center;
5-
gap: 1rem;
2+
display: flex;
3+
flex-direction: column;
4+
align-items: center;
5+
gap: 1rem;
66

7-
.timerDescription {
8-
font-size: 1.4rem;
9-
font-weight: 500;
10-
color: #fff;
11-
}
12-
}
7+
.timerDescription {
8+
font-size: 1.4rem;
9+
font-weight: 500;
10+
color: #fff;
11+
}
12+
}
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.timerWrapper {
2-
display: flex;
3-
flex-direction: column;
4-
align-items: center;
5-
gap: 1rem;
2+
display: flex;
3+
flex-direction: column;
4+
align-items: center;
5+
gap: 1rem;
66

7-
.timerDescription {
8-
font-size: 1.4rem;
9-
font-weight: 500;
10-
color: #fff;
11-
}
12-
}
7+
.timerDescription {
8+
font-size: 1.4rem;
9+
font-weight: 500;
10+
color: #fff;
11+
}
12+
}

src/styles/mixin/functions.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@
3535
@if length($list) == 2 {
3636
$key: list.nth($list, 1) + '-' + list.nth($list, 2);
3737
} @else if length($list) == 3 {
38-
$key: list.nth($list, 1) + '-' + list.nth($list, 2) + '-' + list.nth($list, 3);
38+
$key: list.nth($list, 1) +
39+
'-' +
40+
list.nth($list, 2) +
41+
'-' +
42+
list.nth($list, 3);
3943
} @else {
4044
$key: $code;
4145
}

src/styles/mixin/responsive.scss

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ $md: 780px;
44
$lg: 1060px;
55

66
@mixin mobile {
7-
@media (min-width: #{$sm}) and (max-width: #{$md - 1px}) {
8-
@content;
9-
}
7+
@media (min-width: #{$sm}) and (max-width: #{$md - 1px}) {
8+
@content;
9+
}
1010
}
1111

1212
@mixin tablet {
13-
@media (min-width: #{$md}) and (max-width: #{$lg - 1px}) {
14-
@content;
15-
}
13+
@media (min-width: #{$md}) and (max-width: #{$lg - 1px}) {
14+
@content;
15+
}
1616
}
1717

1818
@mixin mobile-and-tablet {
19-
@media (min-width: #{$sm}) and (max-width: #{$lg - 1px}) {
20-
@content;
21-
}
19+
@media (min-width: #{$sm}) and (max-width: #{$lg - 1px}) {
20+
@content;
21+
}
2222
}
2323

2424
@mixin desktop {
25-
@media (min-width: #{$lg}) {
26-
@content;
27-
}
25+
@media (min-width: #{$lg}) {
26+
@content;
27+
}
2828
}

0 commit comments

Comments
 (0)