Skip to content

Commit d09855a

Browse files
committed
update dependencies
1 parent de0b78a commit d09855a

File tree

6 files changed

+25
-30
lines changed

6 files changed

+25
-30
lines changed

bun.lockb

14.4 KB
Binary file not shown.

package.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -19,39 +19,39 @@
1919
},
2020
"dependencies": {
2121
"@astrojs/check": "^0.9.4",
22-
"@astrojs/mdx": "^4.0.8",
23-
"@astrojs/sitemap": "^3.2.1",
22+
"@astrojs/mdx": "^4.2.4",
23+
"@astrojs/sitemap": "^3.3.0",
2424
"@iconify-json/charm": "^1.2.2",
25-
"@iconify-json/fluent": "^1.2.12",
25+
"@iconify-json/fluent": "^1.2.19",
2626
"@iconify-json/ic": "^1.2.2",
27-
"@iconify-json/material-symbols": "^1.2.14",
27+
"@iconify-json/material-symbols": "^1.2.20",
2828
"@iconify-json/ph": "^1.2.2",
29-
"astro": "^5.2.2",
29+
"astro": "^5.7.3",
3030
"astro-icon": "^1.1.5",
3131
"astro-seo": "^0.8.4"
3232
},
3333
"devDependencies": {
34-
"@eslint/js": "^9.19.0",
34+
"@eslint/js": "^9.24.0",
3535
"@rollup/plugin-yaml": "^4.1.2",
36-
"@types/bun": "^1.2.1",
36+
"@types/bun": "^1.2.10",
3737
"@types/eslint": "^9.6.1",
38-
"@types/eslint__eslintrc": "^3.0.0",
39-
"@types/eslint__js": "^9.0.0",
40-
"@typescript-eslint/parser": "^8.22.0",
41-
"astro-eslint-parser": "^1.2.1",
42-
"eslint": "^9.19.0",
38+
"@types/eslint__eslintrc": "^3.3.0",
39+
"@types/eslint__js": "^9.14.0",
40+
"@typescript-eslint/parser": "^8.30.1",
41+
"astro-eslint-parser": "^1.2.2",
42+
"eslint": "^9.24.0",
4343
"eslint-plugin-astro": "^1.3.1",
4444
"eslint-plugin-jsx-a11y": "^6.10.2",
4545
"npm-run-all2": "^7.0.2",
4646
"postcss-html": "^1.8.0",
47-
"prettier": "^3.4.2",
47+
"prettier": "^3.5.3",
4848
"prettier-plugin-astro": "^0.14.1",
49-
"sharp": "^0.34.0",
50-
"stylelint": "^16.14.1",
49+
"sharp": "^0.34.1",
50+
"stylelint": "^16.18.0",
5151
"stylelint-config-html": "^1.1.0",
52-
"stylelint-config-recommended": "^14.0.1",
52+
"stylelint-config-recommended": "^16.0.0",
5353
"stylelint-prettier": "^5.0.3",
54-
"typescript": "^5.7.3",
55-
"typescript-eslint": "^8.22.0"
54+
"typescript": "^5.8.3",
55+
"typescript-eslint": "^8.30.1"
5656
}
5757
}

public/destyle.css

+2-7
Original file line numberDiff line numberDiff line change
@@ -245,14 +245,9 @@ textarea {
245245
* Reset radio and checkbox appearance to preserve their look in iOS.
246246
*/
247247

248-
[type="checkbox"] {
249-
-webkit-appearance: checkbox;
250-
appearance: checkbox;
251-
}
252-
248+
[type="checkbox"],
253249
[type="radio"] {
254-
-webkit-appearance: radio;
255-
appearance: radio;
250+
appearance: auto;
256251
}
257252

258253
/**

public/global.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ img {
3434
body {
3535
box-sizing: border-box;
3636
min-height: 100vh;
37-
font-family: Inter, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
38-
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
39-
sans-serif;
37+
font-family:
38+
Inter, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
39+
"Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
4040
color: var(--color-text-normal);
4141
background-color: white;
4242
}

src/components/composite/header/BlurImageHeader.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const { imgSrc, imgAlt } = Astro.props;
2525
<style>
2626
.img-triming {
2727
position: relative;
28-
height: minmax(12rem, 24rem);
28+
height: calc(minmax(12rem, 24rem));
2929
max-height: 24rem;
3030
overflow-y: hidden;
3131
display: flex;

src/pages/members/index.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ const students = await getCollection(
100100
}
101101

102102
.subcontainer {
103-
display: subgrid;
103+
display: grid;
104104
grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
105105
}
106106

0 commit comments

Comments
 (0)