@appscode/design-system 2.6.22-alpha-0.0.19 → 2.6.22-alpha-0.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "2.6.22-alpha-0.0.19",
3
+ "version": "2.6.22-alpha-0.0.21",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -20,6 +20,7 @@
20
20
  background-position: 0% 0%;
21
21
  backdrop-filter: blur(142px);
22
22
  z-index: -1;
23
+ background-repeat: round;
23
24
  }
24
25
  }
25
26
 
@@ -21,7 +21,7 @@ const isOpen = ref(true)
21
21
  </script>
22
22
 
23
23
  <template>
24
- <div class="content-body mt-10">
24
+ <div class="content-body">
25
25
  <div class="container px-5">
26
26
  <div class="columns is-multiline">
27
27
  <div class="section-card is-fullwidth">
@@ -13,10 +13,10 @@ withDefaults(defineProps<Props>(), {
13
13
  </script>
14
14
 
15
15
  <template>
16
- <router-link :to="url" class="sidebar-item" :class="{ 'is-active': isActive }">
16
+ <div class="sidebar-item is-clickable" :class="{ 'is-active': isActive }">
17
17
  <span class="icon">
18
18
  <slot name="item-icon" />
19
19
  </span>
20
20
  <span>{{ title }}</span>
21
- </router-link>
21
+ </div>
22
22
  </template>