Skip to content

Commit 93ee272

Browse files
committed
Format and linter fix
1 parent 233c4f4 commit 93ee272

4 files changed

Lines changed: 5 additions & 12 deletions

File tree

src/app/components/Departments.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ import {
55
} from "@/app/genericComponents/General";
66
import { departments_data } from "@data/departments_data";
77
import DepartmentInfoCard from "@/app/genericComponents/DepartmentInfoCard";
8-
import styled from "styled-components";
8+
import styled from "styled-components";
99
import { SpacingM } from "@/app/genericComponents/tokens";
1010

11-
1211
const DepartmentsCards = styled.div`
1312
display: flex;
1413
flex-wrap: wrap;
@@ -17,7 +16,6 @@ const DepartmentsCards = styled.div`
1716
margin-top: ${SpacingM};
1817
`;
1918

20-
2119
export default function Departments() {
2220
return (
2321
<SectionContainer id={"departments"}>

src/app/components/Hero.tsx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import styled from "styled-components";
22
import {
33
MobileBreakpoint,
44
MobileTitleXL,
5-
SpacingL,
65
SpacingM,
76
SpacingXXL,
87
TitleXL,
@@ -30,9 +29,9 @@ const Container = styled.div`
3029
position: absolute;
3130
inset: 0;
3231
background-image: url("/IMG_6219.jpeg");
33-
background-position: center 60%;
34-
background-size: cover;
35-
opacity: 0.3;
32+
background-position: center 60%;
33+
background-size: cover;
34+
opacity: 0.3;
3635
z-index: 0;
3736
}
3837
@@ -42,12 +41,11 @@ const Container = styled.div`
4241
}
4342
`;
4443

45-
4644
const Title = styled.h1`
4745
text-align: center;
4846
font-size: ${TitleXL};
4947
background: transparent;
50-
color: #fff;
48+
color: #fff;
5149
text-shadow: 0 2px 6px rgba(0, 0, 0, 0);
5250
5351
@media (max-width: ${MobileBreakpoint}) {
@@ -59,7 +57,6 @@ const ButtonContainer = styled.div`
5957
display: flex;
6058
justify-content: center;
6159
margin-top: ${SpacingM};
62-
6360
`;
6461

6562
export default function Hero() {

src/app/genericComponents/DepartmentInfoCard.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
BodyTextMedium,
77
MobileBreakpoint,
88
Primary100,
9-
Primary200,
109
SpacingS,
1110
SpacingXS,
1211
TitleS,

src/app/genericComponents/General.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import styled from "styled-components";
22
import {
3-
BackgroundAccent,
43
BodyText,
54
BodyTextMedium,
65
MaxElement,

0 commit comments

Comments
 (0)