Skip to content

chore(deps): update all non-major dependencies #1724

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/components/content/ChangeLog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ css({
paddingBottom: '{space.4}',

'h2': {
fontSize: '{fontSizes.2xl}',
fontWeight: '{fontWeights.bold}',
color: '{colors.gray.900}',
fontSize: '{fontSize.2xl}',
fontWeight: '{fontWeight.bold}',
color: '{color.gray.900}',
marginTop: '{space.8}',
'@dark': {
color: '{colors.gray.100}'
color: '{color.gray.100}'
}
}
},
Expand Down
20 changes: 10 additions & 10 deletions docs/components/content/HeroAnnouncement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ defineProps({
<style scoped lang="ts">
css({
'.link': {
color: '{colors.primary.900}',
backgroundColor: '{colors.primary.100}',
borderColor: '{colors.primary.400}',
color: '{color.primary.900}',
backgroundColor: '{color.primary.100}',
borderColor: '{color.primary.400}',
borderRadius: '{radii.md}',
borderWidth: '{borderWidths.sm}',
borderWidth: '{borderWidth.sm}',
borderStyle: 'solid',
display: 'inline-flex',
padding: '{space.2} {space.4}',
Expand All @@ -35,22 +35,22 @@ css({
gap: '{space.1}',

'@dark': {
color: '{colors.primary.100}',
color: '{color.primary.100}',
backgroundColor: 'transparent',
borderColor: '{colors.primary.700}'
borderColor: '{color.primary.700}'
},

'&:hover': {
backgroundColor: '{colors.primary.200}',
backgroundColor: '{color.primary.200}',
'@dark': {
backgroundColor: '{colors.primary.900}'
backgroundColor: '{color.primary.900}'
},
}
},
'.link span': {
// font-medium text-sm
fontWeight: '{fontWeights.medium}',
fontSize: '{fontSizes.sm}'
fontWeight: '{fontWeight.medium}',
fontSize: '{fontSize.sm}'
},
'.link .icon': {
width: '{space.4}',
Expand Down
4 changes: 2 additions & 2 deletions docs/components/content/V1DocsLinks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ css({
justifyContent: 'center'
},
'.links-wrapper a': {
color: '{colors.black}',
color: '{color.black}',
'@dark': {
color: '{colors.white}'
color: '{color.white}'
}
}
})
Expand Down
2 changes: 1 addition & 1 deletion docs/content/2.get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ How to get started with Nuxt Content by creating a new project or adding it to a

You can start playing with Nuxt Content in your browser using our online sandboxes:

:button-link[Play on StackBlitz]{icon="IconStackBlitz" href="https://stackblitz.com/github/nuxt/starter/tree/content" blank .mr-2}
:button-link[Play on StackBlitz]{icon="IconStackBlitz" href="https://stackblitz.com/github/nuxt/starter/tree/content" blank style="margin-right: var(--space-4);"}
:button-link[Play on CodeSandbox]{icon="IconCodeSandBox" href="https://codesandbox.io/s/github/nuxt/starter/tree/content" blank}

## New Project
Expand Down
6 changes: 3 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"generate": "nuxi generate"
},
"devDependencies": {
"@nuxt-themes/docus": "^1.0.3",
"@nuxthq/studio": "^0.3.1",
"@nuxtlabs/github-module": "^1.5.3",
"@nuxt-themes/docus": "^1.1.3",
"@nuxthq/studio": "^0.3.5",
"@nuxtlabs/github-module": "^1.5.4",
"monaco-editor-core": "^0.34.1",
"nuxt": "v3.0.0",
"vue-plausible": "^1.3.2"
Expand Down
2 changes: 1 addition & 1 deletion docs/tokens.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineTheme } from 'pinceau'

export default defineTheme({
colors: {
color: {
primary: {
50: { value: '#ecfdf5' },
100: { value: '#d1fae5' },
Expand Down
Loading