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
No related tags found
1 merge request!144ISAICP-7752: Fix multiple dates text alignment.
...@@ -94,8 +94,8 @@ ...@@ -94,8 +94,8 @@
<table role="presentation"> <table role="presentation">
<tbody> <tbody>
<tr> <tr>
<td> <td class="bg-primary p-3">
<span class="d-flex bg-primary p-3 fw-bold fs-sm text-white text-uppercase">{{ publication_date }}</span> <span class="d-inline-flex flex-row fw-bold fs-sm text-white text-uppercase">{{ publication_date }}</span>
</td> </td>
</tr> </tr>
<tr> <tr>
......
...@@ -71,6 +71,9 @@ ...@@ -71,6 +71,9 @@
text-align: left; text-align: left;
margin: 0 0 1rem; margin: 0 0 1rem;
} }
p time {
margin: 0 6px;
}
.bg-primary { .bg-primary {
background: var(--bs-primary); background: var(--bs-primary);
} }
...@@ -128,6 +131,12 @@ ...@@ -128,6 +131,12 @@
.d-flex { .d-flex {
display: flex; display: flex;
} }
.d-inline-flex {
display: inline-flex;
}
.flex-row {
flex-direction: row;
}
.d-inline-block { .d-inline-block {
display: 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