Skip to content

Commit 886cbe7

Browse files
committed
💄 update: Add heading to RawDataDisplay
1 parent 18289a5 commit 886cbe7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/components/RawDataDisplay/RawDataDisplay.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
padding: 1em 2em;
1616
}
1717

18+
#raw-data-display h2 {
19+
margin: 0.75em 0.5em 0.55em 0;
20+
}
21+
1822
#raw-data {
1923
width: 100%;
2024
margin-top: 1em;
@@ -45,7 +49,7 @@
4549
}
4650

4751
#raw-data-file-content {
48-
max-height: 50vh;
52+
max-height: 43vh;
4953
overflow: auto;
5054
padding: 0 0.5em;
5155
}

src/components/RawDataDisplay/RawDataDisplay.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ const RawDataDisplay = ({ objDetails, rawData, dismissRawDataDisplay }) => {
88
<img src={cross} alt="Close" />
99
</button>
1010

11+
<h2>Raw Object Data</h2>
12+
1113
<div id="raw-data">
1214
<div className="raw-data-field">
1315
Object Name:{" "}

0 commit comments

Comments
 (0)