feat(pin): made the gap between pin card half the previous size

This commit is contained in:
Carlos Felgueiras 2024-05-15 14:53:14 +00:00
parent c9d2f492b9
commit dae3c8ab28
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<div class="ui three stackable cards">
{{range .PinnedRepos}}
<div class="ui card">
<div class="ui card pin-repo-item">
<div class="content">
<div class="header">
<div class="flex-item tw-items-center">

View File

@ -138,3 +138,8 @@
.notifications-item:hover .notifications-updated {
display: none;
}
.pin-repo-item {
width: calc(33.33333333333333% - 1em) !important;
margin: 0.4375em 0.5em !important;
}