style: space between history events
I checked PenPot again and noticed that there is spacing between each entry. I could have changed the lists to a different element but that would be another refactoring just to use Flexbox for styling. Instead I went with some margin. If I want to use Flexbox I should first move the fallback from Profile into this component and turn it into another Atom. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
This commit is contained in:
parent
548c05cfda
commit
d16fa9e1e2
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ You should have received a copy of the GNU Affero General Public License along w
|
||||||
|
|
||||||
{#each Object.entries(groupCommitsByDateAndProject(commitsMap)) as commitsByDateAndProject}
|
{#each Object.entries(groupCommitsByDateAndProject(commitsMap)) as commitsByDateAndProject}
|
||||||
{#each Object.entries(commitsByDateAndProject[1]) as commitsByProject}
|
{#each Object.entries(commitsByDateAndProject[1]) as commitsByProject}
|
||||||
<li>
|
<li class="mb-8">
|
||||||
<!-- Indent the whole block by 6 -->
|
<!-- Indent the whole block by 6 -->
|
||||||
<div class="flex flex-col gap-6 ps-6">
|
<div class="flex flex-col gap-6 ps-6">
|
||||||
<CommitDate
|
<CommitDate
|
||||||
|
|
Loading…
Reference in a new issue