Skip to content

Commit 35a0f70

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 557a8a3 commit 35a0f70

File tree

2 files changed

+21
-20
lines changed

2 files changed

+21
-20
lines changed

astro.config.mjs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ export default defineConfig({
3737
],
3838
},
3939
site: "https://ep2025.europython.eu",
40-
integrations: [
41-
mdx(),
42-
sitemap(),
43-
react(),
44-
metaTags(),
45-
],
40+
integrations: [mdx(), sitemap(), react(), metaTags()],
4641
output: "static",
4742
});

src/styles/global.css

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
--color-secondary-dark: #f5e5d6;
1111
--color-secondary-darkest: white;
1212
--color-secondary-light: #7a7ebd;
13-
13+
1414
--color-button: #ee714b;
1515
--color-button-hover: #fabc1b;
1616

@@ -61,12 +61,13 @@
6161
/* Fonts */
6262
@theme {
6363
--font-system: system-ui, sans-serif;
64-
--font-title: "Inter Variable", -apple-system, BlinkMacSystemFont, Segoe UI,
65-
Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji,
66-
Segoe UI Emoji, Segoe UI Symbol;
67-
--font-sans: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
68-
Helvetica, Arial, sans-serif, Apple Color Emoji,
69-
Segoe UI Emoji, Segoe UI Symbol;
64+
--font-title:
65+
"Inter Variable", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
66+
Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji,
67+
Segoe UI Symbol;
68+
--font-sans:
69+
-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial,
70+
sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
7071
}
7172

7273
/* Typography */
@@ -108,16 +109,16 @@ body {
108109
text-decoration: none !important;
109110
}
110111

111-
.prose p a,
112-
.prose li a,
113-
.prose blockquote a,
112+
.prose p a,
113+
.prose li a,
114+
.prose blockquote a,
114115
.prose span a {
115116
color: var(--color-primary);
116117
}
117118

118-
.prose p a:hover,
119-
.prose li a:hover,
120-
.prose blockquote a:hover,
119+
.prose p a:hover,
120+
.prose li a:hover,
121+
.prose blockquote a:hover,
121122
.prose span a:hover {
122123
color: var(--color-primary-hover);
123124
}
@@ -245,7 +246,12 @@ p.cross::after {
245246
word-break: break-word;
246247
}
247248

248-
h1, h2, h3, h4, h5, h6 {
249+
h1,
250+
h2,
251+
h3,
252+
h4,
253+
h5,
254+
h6 {
249255
font-weight: bold;
250256
font-family: var(--font-display);
251257
line-height: 1.25;

0 commit comments

Comments
 (0)