holygrail2 1.3.1 → 1.3.2

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": "holygrail2",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "A minimal, responsive, style-agnostic CSS framework.",
5
5
  "main": "scss/style.scss",
6
6
  "style": "dist/style.css",
@@ -21,7 +21,7 @@ button {
21
21
  cursor: pointer;
22
22
  padding: 10px 16px 8px;
23
23
  background-color: transparent;
24
- height: $height-btn;
24
+ min-height: $height-btn;
25
25
  @include font-regular;
26
26
  &:focus,
27
27
  &.focus,
@@ -143,6 +143,9 @@ button {
143
143
  outline: none;
144
144
  }
145
145
  }
146
+ .btn--wrap {
147
+ white-space: wrap;
148
+ }
146
149
  .btn--mini {
147
150
  padding: $padding-global * 1 + 2px $padding-global * 3 $padding-global * 1
148
151
  $padding-global * 3;
@@ -1076,12 +1079,12 @@ button {
1076
1079
  &[disabled],
1077
1080
  &.disabled {
1078
1081
  background-color: $c-light-grey;
1079
- color: $c-middle-grey;
1082
+ color: $c-dark-grey;
1080
1083
  border-color: transparent;
1081
1084
  opacity: 1;
1082
1085
  svg {
1083
1086
  path {
1084
- fill: $c-middle-grey;
1087
+ fill: $c-dark-grey;
1085
1088
  }
1086
1089
  }
1087
1090
  }