Skip to content

Commit a2ce633

Browse files
fix: dropdown removed (#249)
1 parent b442ef7 commit a2ce633

File tree

2 files changed

+0
-42
lines changed

2 files changed

+0
-42
lines changed

src/components/Prep/Jobs/Jobs.jsx

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,6 @@ const Jobs = () => {
4646
<div id="jobs" className="grid">
4747
{allJobs}
4848
</div>
49-
50-
<button className="view" onClick={toggleViewMore}>
51-
{!viewMore ? (
52-
<FaChevronDown size={20} style={{ color: "white" }} />
53-
) : (
54-
<FaChevronUp size={20} style={{ color: "white" }} />
55-
)}
56-
</button>
5749
</JobSection>
5850
);
5951
};

src/components/Prep/Jobs/JobsElements.jsx

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -26,29 +26,6 @@ export const JobsDropdownIcon = styled(FaChevronDown)`
2626
export const JobSection = styled.section`
2727
margin: 100px 20px;
2828
color: #cecac3;
29-
position: relative;
30-
31-
& button.view {
32-
background: rgba(32, 194, 14, 0.5);
33-
border-radius: 50%;
34-
cursor: pointer;
35-
outline: 2px solid #363636;
36-
display: flex;
37-
justify-content: center;
38-
align-items: center;
39-
width: 3rem;
40-
height: 3rem;
41-
position: absolute;
42-
bottom: -2em;
43-
left: 50%;
44-
transition: 260ms all;
45-
}
46-
47-
& button.view:hover {
48-
background: rgba(32, 194, 14, 0.8);
49-
outline-color: #545454;
50-
outline-offset: 1px;
51-
}
5229
5330
& div.grid {
5431
padding: 0.2rem;
@@ -59,17 +36,6 @@ export const JobSection = styled.section`
5936
justify-content : center;
6037
align-items : center;
6138
}
62-
63-
@media screen and (max-width: 1024px) {
64-
& div.grid {
65-
grid-template-columns: repeat(2, 1fr);
66-
}
67-
}
68-
@media screen and (max-width: 768px) {
69-
& div.grid {
70-
grid-template-columns: 1fr;
71-
}
72-
}
7339
`;
7440

7541
export const JobContainer = styled.div`

0 commit comments

Comments
 (0)