Skip to content

Commit b8e6be3

Browse files
Bugfix/rza 250159 (#165)
2 parents 013e31c + 4a622b0 commit b8e6be3

File tree

8 files changed

+12
-17
lines changed

8 files changed

+12
-17
lines changed

.markdownlint.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@
55
},
66
"MD029": false,
77
"MD033": {
8-
"allowed_elements": [
9-
"summary",
10-
"details",
11-
"mark"
12-
]
8+
"allowed_elements": ["summary", "details", "mark"]
139
},
1410
"MD007": {
1511
"indent": 2
@@ -24,4 +20,4 @@
2420
"no-duplicate-heading": {
2521
"siblings_only": true
2622
}
27-
}
23+
}

src/assets/styles/footer.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
--footer-border-color: #e5e7eb;
3838
}
3939

40-
4140
.footer-theme-toggle {
4241
display: inline-flex;
4342
align-items: center;
@@ -275,7 +274,7 @@
275274
transition: transform 0.2s ease-in-out;
276275
}
277276

278-
.footer__nav--item[open]>summary .fa-chevron-down {
277+
.footer__nav--item[open] > summary .fa-chevron-down {
279278
transform: rotate(180deg);
280279
}
281280

@@ -292,4 +291,4 @@
292291
margin-top: 1rem;
293292
font-size: 0.85rem;
294293
}
295-
}
294+
}

src/assets/styles/shortcut.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,4 @@
182182

183183
.rows {
184184
margin: 3px;
185-
}
185+
}

src/components/Analytics.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const gtagScript = `
88
`;
99
---
1010

11-
<script async src={`https://www.googletagmanager.com/gtag/js?id=${GA_ID}`}></script>
11+
<script async src={`https://www.googletagmanager.com/gtag/js?id=${GA_ID}`} is:inline></script>
1212
<script define:vars={{ gtagScript }} is:inline>
1313
{
1414
gtagScript;

src/components/about/TechSection.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import "@/assets/styles/about.css";
2+
33
---
44

55
<section class="tech-section">

src/layouts/Base.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Footer from "@/layouts/common/Footer";
55
import Header from "@/layouts/common/Header";
66
import Menu from "@/layouts/common/Menu";
77
import { siteConfig } from "@/site-config";
8-
import Shortcut from "@/components/Shortcut.astro";
8+
//import Shortcut from "@/components/Shortcut.astro";
99
1010
const {
1111
meta: { title, description = siteConfig.description, ogImage },
@@ -19,7 +19,7 @@ const {
1919
</head>
2020
<body id="body" class="body__container">
2121
<ThemeProvider />
22-
<Shortcut />
22+
<!--<Shortcut />-->
2323
<Header title={title}>
2424
<slot name="header-left" slot="left" />
2525
<slot name="header-right" slot="right" />

src/layouts/BaseHead.astro

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const socialImageURL = new URL(ogImage ? ogImage : "/assets/images/ABCD-blue.png
5151
<meta property="og:image" content={socialImageURL} />
5252
<meta property="og:image:alt" content={description} />
5353
<meta property="og:image:width" content="1200" />
54-
<meta property="og:image:height" content="630" />
54+
<meta property="og:image:height" content="1200" />
5555
{
5656
articleDate && (
5757
<>
@@ -62,7 +62,8 @@ const socialImageURL = new URL(ogImage ? ogImage : "/assets/images/ABCD-blue.png
6262
}
6363

6464
{/* Twitter */}
65-
<meta property="twitter:card" content="/assets/images/512x512.png" />
65+
<meta name="twitter:card" content="https://abcdkbd.com/assets/images/512x512.png" />
66+
<meta property="twitter:card" content="https://abcdkbd.com/assets/images/512x512.png" />
6667
<meta property="twitter:url" content={canonicalURL} />
6768
<meta property="twitter:title" content={title} />
6869
<meta property="twitter:description" content={description} />

src/pages/about.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
import "@/assets/styles/about.css";
32
import BackIcon from "@/components/Back.astro";
43
import HeroSection from "@/components/about/HeroSection.astro";
54
import TeamSection from "@/components/about/TeamSection.astro";

0 commit comments

Comments
 (0)