Skip to content

Commit

Permalink
Merge pull request #283 from MeeTeamIdle/release-1.0
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
prgmr99 authored Nov 11, 2024
2 parents fc41007 + 1ee4226 commit 1e42cce
Show file tree
Hide file tree
Showing 40 changed files with 810 additions and 758 deletions.
12 changes: 11 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,19 @@
function gtag() {
dataLayer.push(arguments);
}

gtag('js', new Date());

gtag('config', 'G-VBQGWM8M4D');
const userState = JSON.parse(localStorage.getItem('userState'));
const userId = userState?.userId;

if (userId) {
gtag('config', 'G-VBQGWM8M4D', {
'user-id': userId,
});
} else {
gtag('config', 'G-VBQGWM8M4D');
}
</script>
</head>
<body>
Expand Down
Binary file modified public/meeteam_banner_icon_large.webp
Binary file not shown.
Binary file modified public/meeteam_banner_icon_medium.webp
Binary file not shown.
Binary file modified public/meeteam_banner_icon_small.webp
Binary file not shown.
Binary file added public/meeteam_banner_icon_xlarge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 16 additions & 1 deletion src/atom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,22 @@ export const previousLocationState = atom({
export const recruitFilterState = atom<RecruitFilter>({
key: 'recruitFilter',
default: {
scope: null,
scope: 1,
category: null,
field: null,
skill: [],
role: [],
tag: [],
keyword: '',
course: null,
professor: null,
},
});

export const recruitFilterStateAuth = atom<RecruitFilter>({
key: 'recruitFilterAuth',
default: {
scope: 2,
category: null,
field: null,
skill: [],
Expand Down
54 changes: 0 additions & 54 deletions src/components/dropdown/Dropdown.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import styled from 'styled-components';
interface IDropdown {
$showDropdown?: boolean;
$scope?: boolean;
$isCheck?: boolean;
$isScopeSelected?: boolean;
$isCategorySelected?: boolean;
}

Expand Down Expand Up @@ -37,11 +35,6 @@ const Dropdown = styled.div<IDropdown>`
font-size: 1.6rem;
}
.scope-selected {
color: ${props => (props.$isScopeSelected ? '#5877FC' : '#373f41')};
font-weight: ${props => (props.$isScopeSelected ? '600' : '500')};
}
.category-selected {
color: ${props => (props.$isCategorySelected ? '#5877FC' : '#373f41')};
font-weight: ${props => (props.$isCategorySelected ? '600' : '500')};
Expand Down Expand Up @@ -197,53 +190,6 @@ const Dropdown = styled.div<IDropdown>`
display: flex;
width: 100%;
gap: 2rem;
.container-inputs {
width: 100%;
position: relative;
input {
height: 4.8rem;
padding: 1.2rem 1.6rem;
flex: 1 0 0;
box-sizing: border-box;
margin: 0;
width: 100%;
border-radius: 1rem;
font-size: 1.6rem;
border: 1px solid #8e8e8e;
background: ${props => (props.$isCheck ? 'transparent' : '#e3e3e3')};
&:hover {
border: 1px solid #5877fc;
transition: 0.2s ease-in-out;
}
&:focus {
outline: none;
border: 1px solid #5877fc;
}
}
.dropdown {
position: absolute;
width: 100%;
display: flex;
flex-direction: column;
font-size: 1.4rem;
color: #8e8e8e;
gap: 1.2rem;
padding: 1.2rem 1.6rem;
z-index: 401;
background-color: #fff;
border-radius: 1rem;
border: 1px solid #e3e3e3;
box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
span {
cursor: pointer;
}
}
}
}
}
Expand Down
Loading

0 comments on commit 1e42cce

Please sign in to comment.