feat(ui): Improve SidebarEntry layout and styling

Add 'authors-and-tags' class to row-group for better organization.
Hide empty first child in authors-and-tags group to prevent gaps.
Enhances visual consistency and reduces unnecessary white space.
This commit is contained in:
Caleb Owens 2024-08-06 10:23:31 +02:00
parent 141943215a
commit 5c8ade70c2

View File

@ -63,7 +63,7 @@
</h4>
<div class="row">
<div class="row-group">
<div class="row-group authors-and-tags">
{@render authorAvatars()}
<div class="branch-remotes">
<!-- NEED API -->
@ -137,6 +137,12 @@
}
}
.authors-and-tags {
:global(& > *:first-child:empty) {
display: none;
}
}
/* ROW */
.row {