@nuxtify/core 0.4.0 → 0.4.2
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/README.md
CHANGED
|
@@ -82,7 +82,7 @@ Nuxtify Core builds on the amazing features of [Vue](https://vuejs.org/guide/int
|
|
|
82
82
|
### 💡 Intuitive UI & UX
|
|
83
83
|
|
|
84
84
|
- Easily override any component with [Vuetify global defaults](https://vuetifyjs.com/en/features/global-configuration/)
|
|
85
|
-
- Icons powered by [Material Design Icons](https://pictogrammers.com/library/mdi/)
|
|
85
|
+
- Icons powered by [Material Design Icons](https://pictogrammers.com/library/mdi/)
|
|
86
86
|
- Fully responsive and adapts to all modern browsers and devices
|
|
87
87
|
- (coming soon) Light and dark mode toggle
|
|
88
88
|
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -11,8 +11,7 @@ const isExternalLink = computed(
|
|
|
11
11
|
<v-system-bar
|
|
12
12
|
:height="xs ? 60 : 40"
|
|
13
13
|
:order="-100"
|
|
14
|
-
|
|
15
|
-
class="justify-center text-start"
|
|
14
|
+
class="app-announcement justify-center text-start"
|
|
16
15
|
>
|
|
17
16
|
<div
|
|
18
17
|
v-if="nuxtifyConfig.announcement?.message"
|
|
@@ -34,3 +33,7 @@ const isExternalLink = computed(
|
|
|
34
33
|
</v-btn>
|
|
35
34
|
</v-system-bar>
|
|
36
35
|
</template>
|
|
36
|
+
|
|
37
|
+
<style scoped>
|
|
38
|
+
.app-announcement{background-color:rgb(var(--v-theme-secondary),var(--v-activated-opacity))}
|
|
39
|
+
</style>
|