free-astro-components 0.0.15 → 0.0.17

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
@@ -3,7 +3,7 @@
3
3
  "description": "A collection of free Astro components",
4
4
  "author": "Denis Ventura",
5
5
  "type": "module",
6
- "version": "0.0.15",
6
+ "version": "0.0.17",
7
7
  "exports": {
8
8
  ".": {
9
9
  "import": {
@@ -142,10 +142,6 @@ const inputClasses = ['ac-input', statusClasses].filter(Boolean).join(' ')
142
142
  &.ac-input--success + .ac-input-helper-text {
143
143
  color: rgb(var(--ac-success));
144
144
  }
145
-
146
- &::placeholder {
147
- color: red;
148
- }
149
145
  }
150
146
 
151
147
  .ac-input-label {
package/src/css/main.css CHANGED
@@ -132,4 +132,9 @@
132
132
 
133
133
  *:focus-visible {
134
134
  outline-color: var(--ac-outline-color);
135
+ }
136
+
137
+ input::placeholder,
138
+ textarea::placeholder {
139
+ color: rgb(var(--ac-gray-300));
135
140
  }
@@ -85,7 +85,7 @@ import Input from '../components/Input.astro'
85
85
  </Layout>
86
86
 
87
87
  <style>
88
- /*@import '../css/preflight.css';*/
88
+ @import '../css/preflight.css';
89
89
 
90
90
  .content {
91
91
  padding: var(--ac-spacing-8);