Skip to content

Commit 13d71ec

Browse files
committed
Merge branch 'issue-91-cloud-animation'
2 parents a226692 + c9f00a4 commit 13d71ec

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

src/components/InstrumentWindow/InstrumentWindow.jsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,11 @@ const InstrumentWindow = () => {
163163
size={100}
164164
delay={delay}
165165
/>
166+
<p style={{
167+
textAlign: 'center',
168+
maxWidth: '75%',
169+
fontSize: 25 }}>Please take this time to explore the instrument
170+
by clicking/tapping on the various components</p>
166171
</>
167172
)}
168173
{!fetching && error && (

src/style/InstrumentWindow.css

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,19 @@
1515
}
1616

1717
.instrument-container {
18+
display: flex;
1819
position: relative;
19-
width: 100%;
20+
width: 75%;
2021
height: 100%;
22+
23+
justify-content: center;
24+
align-items: center;
2125
}
2226

2327
#instrument {
2428
height: 90vh;
2529
flex-grow: 1;
30+
justify-content: center;
2631
position: relative; /* Ensure this is a positioning context */
2732
}
2833

@@ -85,7 +90,7 @@
8590
display: flex;
8691
flex-direction: column;
8792
align-items: center;
88-
width: 36%;
93+
width: 25%;
8994
padding-bottom: 25px;
9095
}
9196

@@ -278,6 +283,10 @@
278283
flex-direction: column;
279284
}
280285

286+
.instrument-container {
287+
width: 100%;
288+
}
289+
281290
#instrument {
282291
width: 100%;
283292
}

0 commit comments

Comments
 (0)