Fix css for item card [SCI-9475]

This commit is contained in:
Andrej 2023-10-09 09:33:38 +02:00
parent 0ebcb58fa6
commit ab49c52054
2 changed files with 2 additions and 2 deletions

View file

@ -127,7 +127,7 @@
<div class="flex flex-col gap-3">
<div v-for="(item, index_assigned) in assigned" :key="`assigned_element_${index_assigned}`">
{{ i18n.t(`repositories.item_card.assigned.labels.${item.type}`) }}
<a :href="item.url">
<a :href="item.url" class="text-sn-science-blue">
{{ item.archived ? i18n.t('labels.archived') : '' }} {{ item.value }}
</a>
</div>

View file

@ -1,7 +1,7 @@
<div
id="repositoryItemSidebar"
data-behaviour="vue"
class="fixed top-0 right-0 h-full z-[9999]"
class="fixed top-0 right-0 h-full z-[2000]"
>
<repository-item-sidebar />
</div>