mirror of
https://github.com/remvze/moodist.git
synced 2025-12-18 09:24:14 +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-prettier/recommended"
|
||||
],
|
||||
|
||||
"rules": {
|
||||
"import-notation": "string",
|
||||
"selector-class-pattern": null,
|
||||
"no-descending-specificity": null
|
||||
},
|
||||
|
||||
"overrides": [
|
||||
{
|
||||
"files": ["*.astro"],
|
||||
"files": ["*.astro", "**/*.astro"],
|
||||
"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;
|
||||
}
|
||||
|
||||
.footer p a {
|
||||
.footer p :global(a) {
|
||||
font-weight: 500;
|
||||
color: var(--color-foreground);
|
||||
text-decoration: none;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue