From d276bfbdb171e6e3c18fc972a76a52e8b11f2bb6 Mon Sep 17 00:00:00 2001 From: Matheus Cristian Date: Tue, 9 Jan 2024 15:21:57 -0300 Subject: [PATCH] feat: fixed skeleton loading --- src/views/repository/content/Bases.vue | 132 ++++++++++++++++--------- 1 file changed, 84 insertions(+), 48 deletions(-) diff --git a/src/views/repository/content/Bases.vue b/src/views/repository/content/Bases.vue index d9932c76a..fe745b6fe 100644 --- a/src/views/repository/content/Bases.vue +++ b/src/views/repository/content/Bases.vue @@ -1,60 +1,56 @@ @@ -406,11 +402,51 @@ export default { .repository-base { &__header { display: flex; + align-items: center; + justify-content: space-between; + gap: $unnnic-spacing-sm; + + &__details { + display: flex; + flex-direction: column; + row-gap: $unnnic-spacing-sm; + } + + &__title { + display: flex; + column-gap: $unnnic-spacing-sm; + align-items: center; + + h1 { + font-family: $unnnic-font-family-secondary; + font-size: $unnnic-font-size-title-md; + line-height: $unnnic-font-size-title-md + $unnnic-line-height-md; + font-weight: $unnnic-font-weight-bold; + color: $unnnic-color-neutral-darkest; + + margin: 0; + } + } + + &__description { + color: $unnnic-color-neutral-dark; + font-family: $unnnic-font-family-secondary; + font-size: $unnnic-font-size-body-gt; + line-height: $unnnic-font-size-body-gt + $unnnic-line-height-md; + font-weight: $unnnic-font-weight-regular; + + margin: 0; + } + + &__categories { + display: flex; + flex-wrap: wrap; + gap: $unnnic-spacing-xs; + } &__tag { padding: 0 $unnnic-inset-lg; font-size: 15px; - margin-right: $unnnic-inset-nano; } }