Skip to content

Commit 6aee3a7

Browse files
committed
feat: display schema version in header for user ease
1 parent a257bfc commit 6aee3a7

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

index.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@
1313
</head>
1414

1515
<body>
16-
<header>
17-
<h1>ILR File Creator</h1>
16+
<header class="flex-row">
17+
<h1 class="flex-child-grow">ILR File Creator</h1>
18+
<!-- TODO: read version number from schemafile -->
19+
<p class="flex-child-static">2526.1.38.0</p>
1820
</header>
1921

2022
<main>
@@ -47,8 +49,9 @@ <h2>Input</h2>
4749
<h2>Output</h2>
4850
</section>
4951

50-
<section id="formatErrors">
52+
<section id="error-log">
5153
<h2>Error Log</h2>
54+
<div id="error-log-list"></div>
5255
</section>
5356
</main>
5457

styles/style.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,23 @@ section {
88
h2 {
99
margin-top: 0px;
1010
}
11+
12+
.flex-row {
13+
display: flex;
14+
flex-direction: row;
15+
justify-content: space-between;
16+
}
17+
18+
.flex-column {
19+
display: flex;
20+
flex-direction: column;
21+
justify-content: space-between;
22+
}
23+
24+
.flex-child-grow {
25+
flex: 1 0 auto;
26+
}
27+
28+
.flex-child-static {
29+
flex: 0 0 content;
30+
}

0 commit comments

Comments
 (0)