@appscode/design-system 2.0.96 → 2.0.98

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.0.96",
3
+ "version": "2.0.98",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -107,6 +107,7 @@
107
107
  margin-bottom: -12px;
108
108
  padding-top: 12px;
109
109
  padding-bottom: 12px;
110
+ width: 100%;
110
111
  }
111
112
 
112
113
  &:hover {
@@ -36,6 +36,7 @@ const backgroundColor = computed(() => {
36
36
  if (notificationType.value === "success") return "is-success";
37
37
  else if (notificationType.value === "error") return "is-danger";
38
38
  else if (notificationType.value === "warning") return "is-warning";
39
+ else if (notificationType.value === "info") return "is-info";
39
40
  else return "";
40
41
  });
41
42