@sierra-95/svelte-scaffold 1.0.77 → 1.0.78
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/dist/global.css +3 -2
- package/package.json +1 -1
package/dist/global.css
CHANGED
|
@@ -153,7 +153,7 @@ body[data-theme='dark']{
|
|
|
153
153
|
flex-direction: column;
|
|
154
154
|
gap: 0.2rem;
|
|
155
155
|
}
|
|
156
|
-
.sierra-input input {
|
|
156
|
+
.sierra-input input, .sierra-input textarea {
|
|
157
157
|
padding: 0.75rem;
|
|
158
158
|
border-radius: 4px;
|
|
159
159
|
}
|
|
@@ -206,7 +206,8 @@ button{
|
|
|
206
206
|
}
|
|
207
207
|
/**Select, Input**/
|
|
208
208
|
select:focus,
|
|
209
|
-
input:focus
|
|
209
|
+
input:focus,
|
|
210
|
+
textarea:focus {
|
|
210
211
|
outline: none;
|
|
211
212
|
box-shadow: none;
|
|
212
213
|
}
|