@unlk/keymaster 1.3.5 → 1.3.6
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/dist/css/keymaster.css +43 -1
- package/dist/css/keymaster.css.map +1 -1
- package/dist/css/keymaster.min.css +2 -2
- package/dist/css/keymaster.min.css.map +1 -1
- package/dist/js/keymaster.js +1 -1
- package/dist/js/keymaster.min.js +1 -1
- package/package.json +1 -1
- package/scss/keymaster.scss +1 -0
- package/scss/theme/_spinner.scss +64 -0
- package/scss/theme/_version.scss +1 -1
package/CHANGELOG.md
CHANGED
package/dist/css/keymaster.css
CHANGED
|
@@ -21866,7 +21866,7 @@
|
|
|
21866
21866
|
}
|
|
21867
21867
|
|
|
21868
21868
|
/*!
|
|
21869
|
-
* Keymaster v1.3.
|
|
21869
|
+
* Keymaster v1.3.6 (https://unlock-com.github.io/keymaster)
|
|
21870
21870
|
* Copyright 2022-2025 Unlk Developers
|
|
21871
21871
|
* Licensed under MIT
|
|
21872
21872
|
*/
|
|
@@ -37032,4 +37032,46 @@ textarea.form-control-lg {
|
|
|
37032
37032
|
width: fit-content;
|
|
37033
37033
|
}
|
|
37034
37034
|
|
|
37035
|
+
.spinner-home {
|
|
37036
|
+
position: relative;
|
|
37037
|
+
display: inline-block;
|
|
37038
|
+
width: 30px;
|
|
37039
|
+
height: 30px;
|
|
37040
|
+
animation: spin 1.25s ease-in-out infinite;
|
|
37041
|
+
}
|
|
37042
|
+
.spinner-home::before {
|
|
37043
|
+
position: absolute;
|
|
37044
|
+
inset: 0;
|
|
37045
|
+
/* polygon converted from your yellow <polygon> */
|
|
37046
|
+
clip-path: polygon(50% 47.36%, 72.28% 0%, 100% 35.7%, 90.1% 80.1%, 50% 100%, 50% 47.36%);
|
|
37047
|
+
content: "";
|
|
37048
|
+
background: #fbcd18;
|
|
37049
|
+
}
|
|
37050
|
+
.spinner-home::after {
|
|
37051
|
+
position: absolute;
|
|
37052
|
+
inset: 0;
|
|
37053
|
+
/* polygon converted from your blue <polygon> */
|
|
37054
|
+
clip-path: polygon(72.28% 0%, 27.75% 0%, 0% 35.7%, 9.9% 80.1%, 50% 100%, 50% 47.36%, 72.28% 0%);
|
|
37055
|
+
content: "";
|
|
37056
|
+
background: #02f;
|
|
37057
|
+
}
|
|
37058
|
+
|
|
37059
|
+
@keyframes spin {
|
|
37060
|
+
0% {
|
|
37061
|
+
transform: rotate(0deg);
|
|
37062
|
+
}
|
|
37063
|
+
10% {
|
|
37064
|
+
transform: rotate(-25deg);
|
|
37065
|
+
}
|
|
37066
|
+
55% {
|
|
37067
|
+
transform: rotate(395deg);
|
|
37068
|
+
}
|
|
37069
|
+
70% {
|
|
37070
|
+
transform: rotate(360deg);
|
|
37071
|
+
}
|
|
37072
|
+
100% {
|
|
37073
|
+
transform: rotate(360deg);
|
|
37074
|
+
}
|
|
37075
|
+
}
|
|
37076
|
+
|
|
37035
37077
|
/*# sourceMappingURL=keymaster.css.map */
|