social-logos 3.2.6 → 3.2.7
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 +5 -0
- package/build/css/example.css +7 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [3.2.7] - 2025-07-23
|
|
2
|
+
### Changed
|
|
3
|
+
- Internal updates.
|
|
4
|
+
|
|
1
5
|
## [3.2.6] - 2025-07-21
|
|
2
6
|
### Changed
|
|
3
7
|
- Internal updates.
|
|
@@ -244,6 +248,7 @@
|
|
|
244
248
|
|
|
245
249
|
- Build: Refactored (aligned build system with Gridicons).
|
|
246
250
|
|
|
251
|
+
[3.2.7]: https://github.com/Automattic/social-logos/compare/v3.2.6...v3.2.7
|
|
247
252
|
[3.2.6]: https://github.com/Automattic/social-logos/compare/v3.2.5...v3.2.6
|
|
248
253
|
[3.2.5]: https://github.com/Automattic/social-logos/compare/v3.2.4...v3.2.5
|
|
249
254
|
[3.2.4]: https://github.com/Automattic/social-logos/compare/v3.2.3...v3.2.4
|
package/build/css/example.css
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
display: flex;
|
|
31
31
|
flex-wrap: wrap;
|
|
32
32
|
justify-content: center;
|
|
33
|
-
|
|
33
|
+
|
|
34
34
|
div {
|
|
35
35
|
width: 64px;
|
|
36
36
|
height: 64px;
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
bottom: 0;
|
|
97
97
|
border: 2px solid #808080;
|
|
98
98
|
border-radius: 10px;
|
|
99
|
-
transition: .4s;
|
|
99
|
+
transition: 0.4s;
|
|
100
100
|
box-sizing: border-box;
|
|
101
101
|
}
|
|
102
102
|
|
|
@@ -109,20 +109,20 @@
|
|
|
109
109
|
bottom: 2px;
|
|
110
110
|
background: #808080;
|
|
111
111
|
border-radius: 50%;
|
|
112
|
-
transition: .4s;
|
|
112
|
+
transition: 0.4s;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
input:checked + .handle {
|
|
116
|
-
border-color: #
|
|
116
|
+
border-color: #3aa662;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
input:checked + .handle::before {
|
|
120
|
-
background: #
|
|
120
|
+
background: #3aa662;
|
|
121
121
|
transform: translateX(20px);
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
input:focus + .handle {
|
|
125
|
-
box-shadow: 0 0 3px #
|
|
125
|
+
box-shadow: 0 0 3px #2196f3;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
|
|
@@ -130,5 +130,5 @@
|
|
|
130
130
|
text-align: center;
|
|
131
131
|
margin-bottom: 2em;
|
|
132
132
|
}
|
|
133
|
-
|
|
133
|
+
|
|
134
134
|
}
|
package/package.json
CHANGED