@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 CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.3.6] - 2025-12-03
6
+
7
+ ### Add
8
+ - Unlock Home Spinner
9
+
5
10
  ## [1.3.5] - 2025-11-24
6
11
 
7
12
  ### Remove
@@ -21866,7 +21866,7 @@
21866
21866
  }
21867
21867
 
21868
21868
  /*!
21869
- * Keymaster v1.3.5 (https://unlock-com.github.io/keymaster)
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 */