You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Next, import the CSS styles for the FirebaseUI project.
129
129
130
-
If you are using [TailwindCSS](https://tailwindcss.com/), import the base CSS from the `@firebase-ui/styles` package after your Tailwind import:
130
+
If you are using [TailwindCSS](https://tailwindcss.com/), import the base CSS from the `@invertase/firebaseui-styles` package after your Tailwind import:
131
131
132
132
```css
133
133
@import"tailwindcss";
134
-
@import"@firebase-ui/styles/tailwind";
134
+
@import"@invertase/firebaseui-styles/tailwind";
135
135
```
136
136
137
137
If you are not using Tailwind, import the distributable CSS in your project:
138
138
139
139
```css
140
-
@import"@firebase-ui/styles";
140
+
@import"@invertase/firebaseui-styles";
141
141
```
142
142
143
143
To learn more about theming, view the [theming](#theming) section.
@@ -154,7 +154,7 @@ Allows users to sign in with an email and password:
@@ -257,7 +257,7 @@ The default values are based on the [TailwindCSS](https://tailwindcss.com/docs/t
257
257
258
258
## FirebaseUI Core Integration
259
259
260
-
`@firebase-ui/core` is a framework-agnostic layer that manages the complete lifecycle of Firebase Authentication flows. It exposes a reactive store via nanostores that can be wrapped and adapted into any JavaScript framework such as React, Angular, Vue, Svelte, or SolidJS to name a few.
260
+
`@invertase/firebaseui-core` is a framework-agnostic layer that manages the complete lifecycle of Firebase Authentication flows. It exposes a reactive store via nanostores that can be wrapped and adapted into any JavaScript framework such as React, Angular, Vue, Svelte, or SolidJS to name a few.
261
261
262
262
### What FirebaseUI Core Provides
263
263
@@ -278,7 +278,7 @@ The default values are based on the [TailwindCSS](https://tailwindcss.com/docs/t
278
278
Call initializeUI() with your Firebase app and configuration options:
0 commit comments