@aslaluroba/help-center-react 3.0.14 → 3.0.15

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "main": "dist/index.js",
4
4
  "module": "dist/index.esm.js",
5
5
  "types": "dist/index.d.ts",
6
- "version": "3.0.14",
6
+ "version": "3.0.15",
7
7
  "description": "BabylAI Help Center Widget for React and Next.js",
8
8
  "private": false,
9
9
  "exports": {
@@ -4,12 +4,12 @@ const PoweredBy: React.FC = () => {
4
4
  const { t } = useLocalTranslation();
5
5
 
6
6
  return (
7
- <section className="babylai-text-primary-500 dark:babylai-text-white babylai-font-bold babylai-text-center babylai-px-8 babylai-py-2 babylai-w-full">
7
+ <section className="dark:babylai-text-white babylai-font-bold babylai-text-center babylai-px-8 babylai-py-2 babylai-w-full">
8
8
  <a
9
9
  href="https://www.babylai.net/"
10
10
  target="_blank"
11
11
  rel="noopener noreferrer"
12
- className="babylai-text-xs">
12
+ className="babylai-text-xs babylai-opacity-60 hover:babylai-opacity-100">
13
13
  {t('homeSdk.poweredBy')} BabylAI © 2025
14
14
  </a>
15
15
  </section>