Skip to content

Commit d8586b0

Browse files
committed
docs: css fixes
1 parent 326d261 commit d8586b0

File tree

5 files changed

+7
-21
lines changed

5 files changed

+7
-21
lines changed

docs/.vitepress/theme/Layout.vue

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ form {
4747
.custom-blocks {
4848
overflow-x: auto;
4949
}
50-
.reset-button {
5150
5251
form {
5352
margin-block-end: 0;
@@ -73,24 +72,6 @@ form {
7372
outline: none;
7473
}
7574
76-
blockquote.warning {
77-
background-color: rgba(255, 229, 100, 0.3);
78-
border-color: #e7c000;
79-
color: #6b5900;
80-
}
81-
82-
border: none;
83-
padding: 0;
84-
margin: 0;
85-
width: auto;
86-
overflow: visible;
87-
background: transparent;
88-
color: inherit;
89-
font: inherit;
90-
}
91-
.js-focus-visible :focus:not(.focus-visible) {
92-
outline: none;
93-
}
9475
blockquote.warning {
9576
background-color: rgba(255, 229, 100, 0.3);
9677
border-color: #e7c000;

docs/guide/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ VueFire requires Firebase JS SDK >= 9 but **is compatible with Vue 2 and Vue 3**
2020

2121
## Usage
2222

23-
VueFire expects you to use the existing APIs from Firebase as much as possible. It doesn't expose any configs to initialize your app or get the database/firestore instances. You should follow the official Firebase documentation for that. We do have [a Nuxt module](./nuxt.md) that makes it even easier to use VueFire with Nuxt.
23+
VueFire expects you to use the existing APIs from Firebase as much as possible. It doesn't expose any configs to initialize your app or get the database/firestore instances. You should follow the official Firebase documentation for that. We do have [a Nuxt module](/nuxt/getting-started.md) that makes it even easier to use VueFire with Nuxt.
2424

2525
Most of the time, you should gather collection references in one of your files and export them but **to keep examples short, we will always create the database references whenever necessary** instead of gathering them in one place. We will also consider that we have access to some globals (you usually import them from the file where you initialize your Firebase app):
2626

docs/guide/ssr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- NOTE: hide until it works -->
44
<!-- ::: tip
5-
If you are using Nuxt.js, read the [Nuxt guide](./nuxt.md) instead, most of the things are already configured for you.
5+
If you are using Nuxt.js, read the [Nuxt guide](/nuxt/getting-started.md) instead, most of the things are already configured for you.
66
::: -->
77

88
When doing SSR (Server Side Rendering) you want to wait for the data on the server to serialize it and retrieve it on the client side where it will displayed. VueFire already waits for the data for you if you use the composables within components:

docs/nuxt/config.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Nuxt VueFire Config
2+
3+
::: warning
4+
The Nuxt VueFire module is still a work in progress and it might contain breaking changes in the future. The SSR is only partially supported. If you find any issues, please open an issue on GitHub.
5+
:::
File renamed without changes.

0 commit comments

Comments
 (0)