Compare commits
No commits in common. "be896ca00c469b1e2aa1f2962269e13c20d92d6c" and "141b1cffc6d955d03f009819e979a20ea4467346" have entirely different histories.
be896ca00c
...
141b1cffc6
6 changed files with 13 additions and 2329 deletions
2315
package-lock.json
generated
2315
package-lock.json
generated
File diff suppressed because it is too large
Load diff
10
package.json
10
package.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@firq/fgosite",
|
"name": "@firq/fgosite",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.1.19",
|
"version": "0.1.18",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
|
@ -16,13 +16,7 @@
|
||||||
"@astrojs/mdx": "^2.0.3",
|
"@astrojs/mdx": "^2.0.3",
|
||||||
"@astrojs/sitemap": "^3.0.3",
|
"@astrojs/sitemap": "^3.0.3",
|
||||||
"astro": "^4.0.7",
|
"astro": "^4.0.7",
|
||||||
"autoprefixer": "^10.4.16",
|
|
||||||
"iconoir": "^7.2.0",
|
"iconoir": "^7.2.0",
|
||||||
"postcss-preset-env": "^9.3.0",
|
|
||||||
"typescript": "^5.3.3"
|
"typescript": "^5.3.3"
|
||||||
},
|
}
|
||||||
"browserslist": [
|
|
||||||
"last 2 versions",
|
|
||||||
">0.5% and not dead"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
plugins: {
|
|
||||||
"postcss-preset-env": {
|
|
||||||
autoprefixer: { flexbox: "no-2009" },
|
|
||||||
stage: 2,
|
|
||||||
features: {
|
|
||||||
"custom-properties": false,
|
|
||||||
"custom-media-queries": true,
|
|
||||||
"nesting-rules": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -12,7 +12,7 @@ export interface Props {
|
||||||
const { mlb, imageFile, name } = Astro.props
|
const { mlb, imageFile, name } = Astro.props
|
||||||
const imagePath = `/src/assets/ce/${imageFile}`
|
const imagePath = `/src/assets/ce/${imageFile}`
|
||||||
const images_ces = import.meta.glob<{ default: ImageMetadata }>(
|
const images_ces = import.meta.glob<{ default: ImageMetadata }>(
|
||||||
'/src/assets/ce/*.png'
|
'/src/assets/ce/*.{png,webp}'
|
||||||
)
|
)
|
||||||
|
|
||||||
let mlb_image: string = 'mlbalign'
|
let mlb_image: string = 'mlbalign'
|
||||||
|
|
|
@ -107,6 +107,7 @@ const hamburger_src_url = `url("${hamburger.src}")`;
|
||||||
|
|
||||||
.hamburger-menu {
|
.hamburger-menu {
|
||||||
mask: var(--hamburger_src_url) no-repeat center;
|
mask: var(--hamburger_src_url) no-repeat center;
|
||||||
|
-webkit-mask: var(--hamburger_src_url) no-repeat center;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
width: 2em;
|
width: 2em;
|
||||||
height: 2em;
|
height: 2em;
|
||||||
|
|
|
@ -73,6 +73,7 @@ const fulllink = `/${slug}`
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
mask: var(--icon_src_url) no-repeat center;
|
mask: var(--icon_src_url) no-repeat center;
|
||||||
|
-webkit-mask: var(--icon_src_url) no-repeat center;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
width: 1.4em;
|
width: 1.4em;
|
||||||
height: 1.4em;
|
height: 1.4em;
|
||||||
|
|
Loading…
Reference in a new issue