Skip to content

Commit 3ba885d

Browse files
Improve info box styling and layout in csv.html
Replaces the centered paragraph with a styled card containing the same informational content. Enhances readability and visual hierarchy by using a card layout, icon, and improved spacing.
1 parent 6826a71 commit 3ba885d

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

csv.html

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1265,11 +1265,21 @@ <h3 style="color: var(--text-secondary); font-size: 1rem; margin-bottom: 1rem; m
12651265
</table>
12661266
</div>
12671267

1268-
<p style="text-align: center; color: var(--text-muted); margin-top: 2rem; font-size: 0.875rem;">
1269-
Sep and Sylvan are faster for raw parsing. Dataplat wins for <strong style="color: var(--text-primary);">complete database workflows</strong>: IDataReader + compression + progress + messy data handling.
1270-
<br><br>
1271-
<strong style="color: var(--accent-purple);">Why the gap?</strong> Sep/Sylvan use <code style="background: var(--bg-tertiary); padding: 0.1rem 0.3rem; border-radius: 3px;">Span&lt;T&gt;</code> and defer string allocation. The IDataReader interface requires returning actual objects—a fundamental tradeoff for SqlBulkCopy compatibility.
1272-
</p>
1268+
<div style="max-width: 700px; margin: 2rem auto 0; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 1.5rem;">
1269+
<div style="display: flex; align-items: flex-start; gap: 1rem;">
1270+
<div style="color: var(--accent-purple); font-size: 1.25rem; margin-top: 0.125rem;">
1271+
<i class="fas fa-lightbulb"></i>
1272+
</div>
1273+
<div>
1274+
<p style="color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.75rem;">
1275+
Sep and Sylvan are faster for raw parsing. Dataplat wins for <strong style="color: var(--text-primary);">complete database workflows</strong>: IDataReader + compression + progress + messy data handling.
1276+
</p>
1277+
<p style="color: var(--text-muted); font-size: 0.85rem; line-height: 1.6;">
1278+
<strong style="color: var(--accent-purple);">Why the gap?</strong> Sep/Sylvan use <code style="background: var(--bg-tertiary); padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.8rem;">Span&lt;T&gt;</code> and defer string allocation. The IDataReader interface requires returning actual objects—a fundamental tradeoff for SqlBulkCopy compatibility.
1279+
</p>
1280+
</div>
1281+
</div>
1282+
</div>
12731283
</section>
12741284

12751285
<!-- Comparison Section -->

0 commit comments

Comments
 (0)