Skip to content

Commit ddb7cb4

Browse files
committed
fix: table spacing
1 parent 6adef38 commit ddb7cb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lab_mock/templates/index.jinja2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
{% for section in ENVIRONMENT %}
2121
<h2 class="text-xl font-bold text-gray-800">{{ section.name }}</h2>
2222
<p>{{ section.description }}</p>
23-
<table class="mt-6 mb-10 text-gray-900 table-auto">
23+
<table class="text-gray-900 border-separate table-auto border-spacing-y-4">
2424
<thead>
2525
<tr class="text-left">
2626
<th>Name</th>
@@ -29,7 +29,7 @@
2929
</thead>
3030
<tbody>
3131
{% for var in section.vars %}
32-
<tr class="mb-2 font-mono">
32+
<tr class="font-mono">
3333
<td>
3434
<span class="p-1 bg-gray-100 border-2 border-gray-800 rounded-md">
3535
{{ var.name }}

0 commit comments

Comments
 (0)