oneslash-design-system 1.2.7 → 1.2.9

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.
@@ -2,7 +2,7 @@
2
2
  import React from 'react';
3
3
  export default function LoadingScreen() {
4
4
  return (<div className="flex justify-center items-center h-full w-full min-h-[200px]">
5
- <div className="w-12 h-12 border-4 border-t-transparent border-light-accent-main rounded-full animate-spin"></div>
5
+ <div className="w-12 h-12 border-4 border-t-transparent border-light-text-primary dark:border-dark-text-primary dark:border-t-transparent rounded-full animate-spin"></div>
6
6
  </div>);
7
7
  }
8
8
  ;
@@ -14,6 +14,6 @@ export function LoadingSmall(_a) {
14
14
  small: 'w-5 h-5 border-2', // 20px, slightly thinner border
15
15
  };
16
16
  return (<div className="flex justify-center items-center">
17
- <div className={"border-t-transparent border-light-accent-main rounded-full animate-spin ".concat(spinnerSizeClasses[size])}/>
17
+ <div className={"border-t-transparent border-light-text-primary dark:border-dark-text-primary dark:border-t-transparent rounded-full animate-spin ".concat(spinnerSizeClasses[size])}/>
18
18
  </div>);
19
19
  }
package/dist/output.css CHANGED
@@ -1162,6 +1162,10 @@ body {
1162
1162
  border-color: rgb(176 176 176 / var(--tw-border-opacity));
1163
1163
  }
1164
1164
 
1165
+ .dark\:border-t-transparent {
1166
+ border-top-color: transparent;
1167
+ }
1168
+
1165
1169
  .dark\:bg-\[var\(--dark-bg\)\] {
1166
1170
  background-color: var(--dark-bg);
1167
1171
  }