summaryrefslogtreecommitdiffstats
path: root/apps/web-shared/src
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-08-05 00:39:21 +0200
committerivarlovlie <git@ivarlovlie.no>2022-08-05 00:39:21 +0200
commitc1d0567a0c46be08826cf4fe556b680cb2efe53a (patch)
treef617056b1e1c31c6c804466fc7d6259dbed7eae5 /apps/web-shared/src
parente8e6ebf1341b2ebf356539f236f2bafa82d36ca6 (diff)
downloadgreatoffice-c1d0567a0c46be08826cf4fe556b680cb2efe53a.tar.xz
greatoffice-c1d0567a0c46be08826cf4fe556b680cb2efe53a.zip
fix: Add breadcrumbs stylesheet to portal and center the crumbs
Diffstat (limited to 'apps/web-shared/src')
-rw-r--r--apps/web-shared/src/components/breadcrumb/bread.svelte2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web-shared/src/components/breadcrumb/bread.svelte b/apps/web-shared/src/components/breadcrumb/bread.svelte
index 4cf0698..244bb24 100644
--- a/apps/web-shared/src/components/breadcrumb/bread.svelte
+++ b/apps/web-shared/src/components/breadcrumb/bread.svelte
@@ -3,7 +3,7 @@
export let size: sizes = "small";
</script>
<nav class="breadcrumbs {size === 'small' ? 'text-sm' : 'text-lg'}">
- <ol class="flex flex-wrap gap-xxs">
+ <ol class="flex flex-wrap items-center gap-xxs">
<slot></slot>
</ol>
</nav>