Skip to content

Commit 37937e5

Browse files
committed
Style profile
1 parent 8f0386a commit 37937e5

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

src/styles/Profile.css

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.profile-table-container {
2+
display: flex;
3+
justify-content: space-between;
4+
}
5+
6+
.profile-table {
7+
border-collapse: collapse;
8+
width: 30%; /* Adjust the width as needed */
9+
}
10+
11+
.profile-table th {
12+
padding: 10px;
13+
}
14+
15+
.profile-row {
16+
border-bottom: 1px solid #ccc;
17+
padding-bottom: 10px;
18+
margin-bottom: 10px;
19+
}
20+
21+
.profile-table tbody tr:nth-child(odd) {
22+
background-color: #f8f8f8;
23+
}
24+
25+
.profile-table tbody tr:hover {
26+
background-color: #f0f0f0;
27+
}

src/styles/ReservedRockets.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.reserved-rockets {
2+
margin: 0;
3+
padding: 0;
4+
display: flex;
5+
flex-direction: column;
6+
align-items: flex-start;
7+
}
8+
9+
.reserved-rocket {
10+
padding: 3% 5%;
11+
border: 1px solid;
12+
width: 100%;
13+
}

0 commit comments

Comments
 (0)