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
Copy file name to clipboardExpand all lines: README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -258,16 +258,18 @@ If you are using CSS modules in your app you need to handle the CSS files in `/n
258
258
259
259
## Styling
260
260
261
-
To change the styling of the `FirebaseAuth` or the `StyledFirebaseAuth` widget you can override some of its CSS. You can import a CSS that will be included globally in your packed application. For instance create a `firebaseui-overrides.global.css` file and import it in your app:
261
+
To change the styling of the `FirebaseAuth` or the `StyledFirebaseAuth` widget you can override some of its CSS. To do this, import a CSS that will be included in your packed application. For instance create a `firebaseui-styling.global.css` file and import it in your app:
import'./firebaseui-styling.global.css'; // Import globally. Not with CSS modules.
265
265
```
266
266
267
-
> Note: If you are using the "With ExtractTextPlugin and CSS modules" Webpack build rule above, the `.global.css`suffixe will make sure the CSS file is imported globally and not ran through modules support.
267
+
> Note: If you are using the [With ExtractTextPlugin and CSS modules](#with-extracttextplugin-and-css-modules) Webpack build rule above, the `.global.css`suffix will make sure the CSS file is imported globally and not ran through modules support.
268
268
269
269
If you would like to see an example of styling, have a look at the [example app](./example).
270
270
271
+
Alternatively you can include the styling in a `<style>` tag in your application's markup.
0 commit comments