mirror of
https://github.com/remvze/moodist.git
synced 2025-12-18 17:34:17 +00:00
fix: fix footer.astro style
This commit is contained in:
parent
bb1aebc1d1
commit
ee85730ec2
2 changed files with 9 additions and 5 deletions
|
|
@ -5,18 +5,22 @@
|
||||||
"stylelint-config-html",
|
"stylelint-config-html",
|
||||||
"stylelint-prettier/recommended"
|
"stylelint-prettier/recommended"
|
||||||
],
|
],
|
||||||
|
|
||||||
"rules": {
|
"rules": {
|
||||||
"import-notation": "string",
|
"import-notation": "string",
|
||||||
"selector-class-pattern": null,
|
"selector-class-pattern": null,
|
||||||
"no-descending-specificity": null
|
"no-descending-specificity": null
|
||||||
},
|
},
|
||||||
|
|
||||||
"overrides": [
|
"overrides": [
|
||||||
{
|
{
|
||||||
"files": ["*.astro"],
|
"files": ["*.astro", "**/*.astro"],
|
||||||
"rules": {
|
"rules": {
|
||||||
"prettier/prettier": null
|
"prettier/prettier": null,
|
||||||
|
"selector-pseudo-class-no-unknown": [
|
||||||
|
true,
|
||||||
|
{
|
||||||
|
"ignorePseudoClasses": ["global"]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ const t = await getTranslator(currentLocale);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer p a {
|
.footer p :global(a) {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: var(--color-foreground);
|
color: var(--color-foreground);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue