social-logos 3.2.5 → 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 +10 -0
- package/build/css/example.css +9 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [3.2.7] - 2025-07-23
|
|
2
|
+
### Changed
|
|
3
|
+
- Internal updates.
|
|
4
|
+
|
|
5
|
+
## [3.2.6] - 2025-07-21
|
|
6
|
+
### Changed
|
|
7
|
+
- Internal updates.
|
|
8
|
+
|
|
1
9
|
## [3.2.5] - 2025-07-01
|
|
2
10
|
### Changed
|
|
3
11
|
- Internal updates.
|
|
@@ -240,6 +248,8 @@
|
|
|
240
248
|
|
|
241
249
|
- Build: Refactored (aligned build system with Gridicons).
|
|
242
250
|
|
|
251
|
+
[3.2.7]: https://github.com/Automattic/social-logos/compare/v3.2.6...v3.2.7
|
|
252
|
+
[3.2.6]: https://github.com/Automattic/social-logos/compare/v3.2.5...v3.2.6
|
|
243
253
|
[3.2.5]: https://github.com/Automattic/social-logos/compare/v3.2.4...v3.2.5
|
|
244
254
|
[3.2.4]: https://github.com/Automattic/social-logos/compare/v3.2.3...v3.2.4
|
|
245
255
|
[3.2.3]: https://github.com/Automattic/social-logos/compare/v3.2.2...v3.2.3
|
package/build/css/example.css
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
6
6
|
line-height: 1.15;
|
|
7
7
|
|
|
8
|
-
a:link,
|
|
8
|
+
a:link,
|
|
9
|
+
a:visited {
|
|
9
10
|
color: #999;
|
|
10
11
|
}
|
|
11
12
|
|
|
@@ -29,7 +30,7 @@
|
|
|
29
30
|
display: flex;
|
|
30
31
|
flex-wrap: wrap;
|
|
31
32
|
justify-content: center;
|
|
32
|
-
|
|
33
|
+
|
|
33
34
|
div {
|
|
34
35
|
width: 64px;
|
|
35
36
|
height: 64px;
|
|
@@ -95,7 +96,7 @@
|
|
|
95
96
|
bottom: 0;
|
|
96
97
|
border: 2px solid #808080;
|
|
97
98
|
border-radius: 10px;
|
|
98
|
-
transition: .4s;
|
|
99
|
+
transition: 0.4s;
|
|
99
100
|
box-sizing: border-box;
|
|
100
101
|
}
|
|
101
102
|
|
|
@@ -108,20 +109,20 @@
|
|
|
108
109
|
bottom: 2px;
|
|
109
110
|
background: #808080;
|
|
110
111
|
border-radius: 50%;
|
|
111
|
-
transition: .4s;
|
|
112
|
+
transition: 0.4s;
|
|
112
113
|
}
|
|
113
114
|
|
|
114
115
|
input:checked + .handle {
|
|
115
|
-
border-color: #
|
|
116
|
+
border-color: #3aa662;
|
|
116
117
|
}
|
|
117
118
|
|
|
118
119
|
input:checked + .handle::before {
|
|
119
|
-
background: #
|
|
120
|
+
background: #3aa662;
|
|
120
121
|
transform: translateX(20px);
|
|
121
122
|
}
|
|
122
123
|
|
|
123
124
|
input:focus + .handle {
|
|
124
|
-
box-shadow: 0 0 3px #
|
|
125
|
+
box-shadow: 0 0 3px #2196f3;
|
|
125
126
|
}
|
|
126
127
|
|
|
127
128
|
|
|
@@ -129,5 +130,5 @@
|
|
|
129
130
|
text-align: center;
|
|
130
131
|
margin-bottom: 2em;
|
|
131
132
|
}
|
|
132
|
-
|
|
133
|
+
|
|
133
134
|
}
|
package/package.json
CHANGED