gatsby-core-theme 44.4.32 → 44.4.34

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,3 +1,17 @@
1
+ ## [44.4.34](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.33...v44.4.34) (2025-08-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update styles ([dbac899](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/dbac89908f0a94ae6d5bf854f79d62a0ff9a4bee))
7
+
8
+ ## [44.4.33](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.32...v44.4.33) (2025-08-20)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * updated styling ([526f86b](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/526f86b75d8ba45e23c851869ecd65230e470336))
14
+
1
15
  ## [44.4.32](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.4.31...v44.4.32) (2025-08-20)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "44.4.32",
3
+ "version": "44.4.34",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -89,7 +89,7 @@
89
89
 
90
90
  .switch {
91
91
  position: relative;
92
- height: 3.4rem;
92
+ height: 2.4rem;
93
93
  display: flex;
94
94
  align-items: center;
95
95
  }
@@ -103,23 +103,24 @@
103
103
  .slider {
104
104
  position: absolute;
105
105
  cursor: pointer;
106
- width: 6rem;
106
+ width: 4.8rem;
107
107
  inset: 0;
108
108
  background-color: #ccc;
109
- transition: .4s;
109
+ transition: 0.4s;
110
110
  border-radius: 3.4rem;
111
+ height: 2.4rem;
111
112
  }
112
113
 
113
114
  .slider::before {
114
115
  border-radius: 50%;
115
116
  position: absolute;
116
117
  content: "";
117
- height: 2.6rem;
118
- width: 2.6rem;
119
- left: .4rem;
120
- bottom: .4rem;
118
+ height: 2rem;
119
+ width: 2rem;
120
+ left: 0.2rem;
121
+ bottom: 2px;
121
122
  background-color: #fff;
122
- transition: .4s;
123
+ transition: 0.4s;
123
124
  }
124
125
 
125
126
  input:checked + .slider {
@@ -131,11 +132,11 @@ input:focus + .slider {
131
132
  }
132
133
 
133
134
  input:checked + .slider::before {
134
- transform: translateX(26px);
135
+ transform: translateX(24px);
135
136
  }
136
137
 
137
138
  .switchLabel{
138
- margin-left: 5.5rem;
139
+ margin-left: 4.5rem;
139
140
  }
140
141
 
141
142
  .errorMsg {
@@ -264,16 +264,21 @@
264
264
  border: .15rem solid var(--comment-input-error, #DD4B39);
265
265
  }
266
266
 
267
- > button{
268
- border: .2rem solid #161128;
269
- padding: 8px 16px;
270
- width: auto;
271
- margin-left: auto;
272
- border-radius: 5rem;
273
- font-size: 1.4rem;
274
- font-weight: 700;
275
- line-height: 2.2rem;
276
- text-transform: capitalize;
267
+ > .formButton{
268
+ border: .2rem solid #161128;
269
+ padding: 8px 16px !important;
270
+ width: auto !important;
271
+ margin-left: auto;
272
+ border-radius: 5rem;
273
+ font-size: 1.4rem;
274
+ font-weight: 700;
275
+ background: transparent !important;
276
+ text-align: center !important;
277
+ line-height: 2.2rem;
278
+ text-transform: capitalize;
279
+ color: #161128 !important;
280
+ height: 4rem !important;
281
+ grid-column: 1 / -1;
277
282
  }
278
283
  }
279
284