Skip to content
Snippets Groups Projects
Commit e47b2425 authored by Paulo Gingao's avatar Paulo Gingao
Browse files

ISAICP-7752: Fix multiple dates text alignment.

parent 1b9c6054
No related branches found
Tags v1.101.0
1 merge request!144ISAICP-7752: Fix multiple dates text alignment.
......@@ -94,8 +94,8 @@
<table role="presentation">
<tbody>
<tr>
<td>
<span class="d-flex bg-primary p-3 fw-bold fs-sm text-white text-uppercase">{{ publication_date }}</span>
<td class="bg-primary p-3">
<span class="d-inline-flex flex-row fw-bold fs-sm text-white text-uppercase">{{ publication_date }}</span>
</td>
</tr>
<tr>
......
......@@ -71,6 +71,9 @@
text-align: left;
margin: 0 0 1rem;
}
p time {
margin: 0 6px;
}
.bg-primary {
background: var(--bs-primary);
}
......@@ -128,6 +131,12 @@
.d-flex {
display: flex;
}
.d-inline-flex {
display: inline-flex;
}
.flex-row {
flex-direction: row;
}
.d-inline-block {
display: inline-block;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment