@appscode/design-system 2.4.24 → 2.4.26-alpha-1

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/main.scss CHANGED
@@ -16,10 +16,12 @@
16
16
  // COMPONENTS
17
17
  // @import "@/components/vue-components/styles/components/all";
18
18
  @import "@/components/vue-components/styles/components/button";
19
+ @import "@/components/vue-components/styles/components/avatar";
19
20
  @import "@/components/vue-components/styles/components/terminal";
20
21
  @import "@/components/vue-components/styles/components/steps";
21
22
  @import "@/components/vue-components/styles/components/code-preview/all";
22
23
  @import "@/components/vue-components/styles/components/form-fields/input";
24
+ @import "@/components/vue-components/styles/components/form-fields/check-radio-switch";
23
25
  @import "@/components/vue-components/styles/components/form-fields/custom-selectbox";
24
26
  @import "@/components/vue-components/styles/components/ui-builder/vue-open-api";
25
27
  @import "@/components/vue-components/styles/components/ui-builder/ui-builder";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "2.4.24",
3
+ "version": "2.4.26-alpha-1",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -56,7 +56,7 @@ $secondary-dark-grey: hsl($secondary-hue, 10%, 10%);
56
56
  $secondary-light-gray: hsl($secondary-hue, 10%, 96%);
57
57
  $secondary-dark-gray: hsl($secondary-hue, 10%, 10%);
58
58
 
59
- $color-text: hsl($secondary-hue, 10%, 35%);
59
+ $color-text: hsl($secondary-hue, 10%, 25%);
60
60
  $color-heading: hsl($secondary-hue, 10%, 10%);
61
61
  $color-label: hsl($secondary-hue, 20%, 30%);
62
62
  $color-link: hsl($secondary-hue, 40%, 20%);
@@ -333,6 +333,19 @@ hr {
333
333
  }
334
334
  }
335
335
 
336
+ .overflow-y-hidden {
337
+ overflow-y: hidden;
338
+ }
339
+ .overflow-x-hidden {
340
+ overflow-x: hidden;
341
+ }
342
+ .overflow-y-auto {
343
+ overflow-y: auto;
344
+ }
345
+ .overflow-x-auto {
346
+ overflow-x: auto;
347
+ }
348
+
336
349
  .is-transparent-bg {
337
350
  background-color: transparent !important;
338
351
  }
@@ -10,7 +10,7 @@ body {
10
10
  font-family: $font-paragraph;
11
11
  font-weight: 400;
12
12
  font-size: 13px;
13
- color: $color-heading;
13
+ color: $color-text;
14
14
  }
15
15
 
16
16
  p {