@enki-tek/fms-web-components 0.0.63 → 0.0.64
Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@
|
|
2
2
|
import { badgeConfig } from "./BadgeConfig";
|
3
3
|
export let config = "";
|
4
4
|
export let className = "";
|
5
|
-
let badgeStyles = [`custom-badge`, className
|
5
|
+
let badgeStyles = [`m-0`, `mt-1`, `custom-badge`, className];
|
6
6
|
if (badgeConfig.hasOwnProperty(config)) {
|
7
7
|
badgeStyles = [...badgeConfig[config], ...badgeStyles];
|
8
8
|
}
|
@@ -13,7 +13,7 @@
|
|
13
13
|
}
|
14
14
|
</script>
|
15
15
|
|
16
|
-
<Navbar expand="md" class="bg-white">
|
16
|
+
<Navbar expand="md" class="bg-white sticky-top">
|
17
17
|
<slot name="brand" />
|
18
18
|
<NavbarToggler class="border border-success text-success" on:click={() => (isOpen = !isOpen)} />
|
19
19
|
<Collapse {isOpen} navbar expand="md" on:update={handleUpdate}>
|