@explorer-1/vue 0.2.88 → 0.2.89

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @explorer-1/vue
2
2
 
3
+ ## 0.2.89
4
+
5
+ ### Patch Changes
6
+
7
+ - f7b4ed2: revert fix for #705
8
+
3
9
  ## 0.2.88
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorer-1/vue",
3
- "version": "0.2.88",
3
+ "version": "0.2.89",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -95,13 +95,6 @@ onMounted(() => {
95
95
  </div>
96
96
  </template>
97
97
  <style lang="scss" scoped>
98
- input[type='search'] {
99
- transform: scale(0.875);
100
- transform-origin: left;
101
- @media screen and (min-width: 1024px) {
102
- transform: scale(1);
103
- }
104
- }
105
98
  .custom-focus {
106
99
  input {
107
100
  outline: none;
@@ -57,9 +57,5 @@ export default defineComponent({
57
57
  .EmailInput::placeholder {
58
58
  @apply text-white text-opacity-40;
59
59
  }
60
- input[type='email'].EmailInput {
61
- transform: scale(0.875);
62
- transform-origin: left;
63
- }
64
60
  }
65
61
  </style>