Skip to content

Commit b282dc4

Browse files
committed
wip
1 parent 643a131 commit b282dc4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

resources/css/app.css

+4
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@
3333
}
3434
}
3535

36+
@theme {
37+
--font-sans: Inter, sans-serif;
38+
}
39+
3640
.number-block {
3741
box-shadow: 20px 0 40px 5px #e6f6f3 inset, -20px 0 10px 5px #e6f6f3 inset;
3842
}

resources/views/layouts/base.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<meta name="description" content="The Laravel portal for problem solving, knowledge sharing and community building." />
1818
<link rel="canonical" href="{{ $canonical ?? Request::url() }}" />
1919

20-
<link rel="preconnect" href="https://rsms.me/">
21-
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
20+
<link rel="preconnect" href="https://fonts.bunny.net">
21+
<link href="https://fonts.bunny.net/css?family=inter:400,500,600&display=swap" rel="stylesheet" />
2222

2323
@vite(['resources/css/app.css'])
2424

tailwind.config.js

-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import defaultTheme from 'tailwindcss/defaultTheme';
21
import forms from '@tailwindcss/forms';
32
import typography from '@tailwindcss/typography';
43

@@ -50,9 +49,6 @@ export default {
5049
facebook: '#4267b2',
5150
linkedin: '#2977c9',
5251
},
53-
fontFamily: {
54-
sans: ['Inter', ...defaultTheme.fontFamily.sans],
55-
},
5652
minWidth: {
5753
8: '2rem',
5854
},

0 commit comments

Comments
 (0)