@helpwave/hightide 0.8.1 → 0.8.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.
@@ -958,6 +958,9 @@
958
958
  .gap-4 {
959
959
  gap: calc(var(--spacing) * 4);
960
960
  }
961
+ .gap-8 {
962
+ gap: calc(var(--spacing) * 8);
963
+ }
961
964
  .gap-x-1 {
962
965
  column-gap: calc(var(--spacing) * 1);
963
966
  }
@@ -5150,6 +5153,10 @@
5150
5153
  &:hover {
5151
5154
  cursor: pointer;
5152
5155
  }
5156
+ &[type="date"]::-webkit-calendar-picker-indicator, &[type="datetime-local"]::-webkit-calendar-picker-indicator, &[type="time"]::-webkit-calendar-picker-indicator {
5157
+ display: none;
5158
+ -webkit-appearance: none;
5159
+ }
5153
5160
  }
5154
5161
  }
5155
5162
  :root {
@@ -5,5 +5,12 @@
5
5
  &:hover {
6
6
  @apply cursor-pointer;
7
7
  }
8
+
9
+ &[type="date"]::-webkit-calendar-picker-indicator,
10
+ &[type="datetime-local"]::-webkit-calendar-picker-indicator,
11
+ &[type="time"]::-webkit-calendar-picker-indicator {
12
+ display: none;
13
+ -webkit-appearance: none;
14
+ }
8
15
  }
9
16
  }
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "url": "git+https://github.com/helpwave/hightide.git"
8
8
  },
9
9
  "license": "MPL-2.0",
10
- "version": "0.8.1",
10
+ "version": "0.8.2",
11
11
  "files": [
12
12
  "dist"
13
13
  ],