Skip to content

Commit

Permalink
more tweaks to styles
Browse files Browse the repository at this point in the history
  • Loading branch information
stephiescastle committed Sep 15, 2024
1 parent 6b95247 commit 71e3715
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<span class="font-extrabold">{{
prettyFilterNames(bucket.key_as_string ? bucket.key_as_string : bucket.key)
}}</span>
<span class="text-gray-mid-dark font-normal">
<span class="text-gray-mid-dark font-normal text-sm">
({{ bucket.doc_count.toLocaleString() }})
</span>
</label>
Expand Down Expand Up @@ -103,7 +103,9 @@
class="form-check-label pl-2 tracking-normal align-middle"
>
{{ prettyFilterNames(bucket.key_as_string ? bucket.key_as_string : bucket.key) }}
<span class="text-gray-mid-dark"> ({{ bucket.doc_count.toLocaleString() }}) </span>
<span class="text-gray-mid-dark text-sm">
({{ bucket.doc_count.toLocaleString() }})
</span>
</label>
</div>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ const emit = defineEmits(['filterGroupAccordionItemOpened', 'filterGroupAccordio
</script>
<template>
<div
class="SearchFilterGroupAccordionItem border-t pt-2"
class="SearchFilterGroupAccordionItem border-t pt-3"
:class="{
'-open border-gray-light-mid -mb-px': !isHidden,
'border-transparent mb-2': isHidden
'border-transparent mb-3': isHidden
}"
>
<div class="SearchFilterGroupAccordionItemHeader flex flex-row w-full content-between">
Expand All @@ -54,7 +54,7 @@ const emit = defineEmits(['filterGroupAccordionItemOpened', 'filterGroupAccordio
</div>
<div
v-show="!isHidden"
class="SearchFilterGroupAccordionItemContent"
class="SearchFilterGroupAccordionItemContent text-sm"
>
<div
v-bind-once="{ id: panelId, 'aria-labelledby': headingId }"
Expand All @@ -66,3 +66,10 @@ const emit = defineEmits(['filterGroupAccordionItemOpened', 'filterGroupAccordio
</div>
</div>
</template>
<style lang="scss">
.SearchFilterGroupAccordionItemContent {
input.mt-px {
@apply mt-0 #{!important};
}
}
</style>

0 comments on commit 71e3715

Please sign in to comment.