Skip to content

Commit 10bab27

Browse files
author
Roméo Maignal
committed
refactor: cleaned up the CSS class names and CSS IDs
1 parent f1874c9 commit 10bab27

19 files changed

Lines changed: 51 additions & 85 deletions

.DS_Store

0 Bytes
Binary file not shown.

dist/assets/index-CD2TtmZx.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/index-D65hrDD1.js

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

dist/index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>flight-inspectors</title>
8+
<script type="module" crossorigin src="/flight-inspectors/assets/index-D65hrDD1.js"></script>
9+
<link rel="stylesheet" crossorigin href="/flight-inspectors/assets/index-CD2TtmZx.css">
10+
</head>
11+
<body>
12+
<div id="root"></div>
13+
</body>
14+
</html>
440 KB
Loading

plots/.DS_Store

6 KB
Binary file not shown.

src/App.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
border: 1px solid #d1d5db;
99
}
1010

11-
.viz_container {
11+
.viz-container {
1212
width: 100%;
1313
display: grid;
1414
grid-template-columns: repeat(2, minmax(0, 1fr));
@@ -17,7 +17,7 @@
1717
gap: 2rem;
1818
}
1919

20-
.viz_container .paragraph {
20+
.viz-container .paragraph {
2121
display: flex;
2222
flex-direction: column;
2323
gap: 10px;
@@ -27,20 +27,20 @@
2727
min-height: 100%;
2828
}
2929

30-
.viz_container .paragraph p {
30+
.viz-container .paragraph p {
3131
margin-block: auto;
3232
max-width: 60ch;
3333
}
3434

35-
.viz_container .paragraph h1 {
35+
.viz-container .paragraph h1 {
3636
margin-bottom: 1rem;
3737
text-align: left;
3838
margin: 0;
3939
align-self: flex-start;
4040
width: 100%;
4141
}
4242

43-
.viz_container .widget {
43+
.viz-container .widget {
4444
justify-self: center;
4545
}
4646

@@ -127,7 +127,7 @@ footer {
127127
}
128128

129129
@media (max-width: 1024px) {
130-
.viz_container {
130+
.viz-container {
131131
grid-template-columns: 1fr;
132132
}
133133

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function App() {
1919
<Hero /> {/* Hero designates the visual element that is meant to capture the visitor's attention (e.g. a large text or image taking most of the space on the screen) */}
2020
</section>
2121

22-
<section id="indtroduction-section">
22+
<section id="introduction-section">
2323
<Introduction /> {/* Here we present our project, our problematic and our motivations */}
2424
</section>
2525

src/components/About.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#about {
1+
.about-content {
22
width: 100%;
33
height: 100vh;
44
background-color: #282523;

src/components/About.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import './About.css'
22

33
const About: React.FC = () => {
44
return (
5-
<div id='about'>
5+
<div className="about-content">
66

77
</div>
88
)

0 commit comments

Comments
 (0)