@appscode/design-system 1.0.43-alpha.209 → 1.0.43-alpha.211

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.
@@ -54,6 +54,10 @@
54
54
  opacity: 0.5 !important;
55
55
  }
56
56
 
57
+ &.is-rounded {
58
+ border-radius: 9999px;
59
+ }
60
+
57
61
  .ac-icon {
58
62
  margin-left: 25px;
59
63
  background-color: $ac-white;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.0.43-alpha.209",
3
+ "version": "1.0.43-alpha.211",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -10,7 +10,7 @@
10
10
  <img
11
11
  v-if="iconImage"
12
12
  :src="iconImage"
13
- alt="close-icon"
13
+ alt="icon"
14
14
  :width="iconImageWidth"
15
15
  />
16
16
  <i v-else :class="`fa fa-${iconClass}`" aria-hidden="true" />
@@ -15,7 +15,7 @@
15
15
  <table-cell v-if="collapsible">
16
16
  <collapsible-button
17
17
  @click.stop="toggleCollapse"
18
- modifier-classes="is-square is-tinny is-light"
18
+ modifier-classes="is-square is-light height-20 width-20 is-rounded is-size-7"
19
19
  :icon-class="isCollapsed ? 'chevron-right' : 'chevron-down'"
20
20
  />
21
21
  </table-cell>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="tag" :class="modifierClasses">
2
+ <div class="tag is-rounded" :class="modifierClasses">
3
3
  <slot />
4
4
  </div>
5
5
  </template>