style: add streamer list styling per platform

- Added @font-face declarations for various font weights of the Inter font family in app.css to improve font rendering.
- Updated text-shadow styles for different platforms (Twitch, YouTube, Kick, Douyu, Huya) in grid_info.blade.php.
- Expanded file paths in tailwind.config.js to include more blade.php files.
This commit is contained in:
Rico van Zelst
2024-03-26 11:19:20 +01:00
parent 7ccd8ba022
commit 99a5fea8f3
3 changed files with 106 additions and 74 deletions

View File

@@ -5,6 +5,7 @@ module.exports = {
darkMode: 'class',
content: [
'./resources/**/*.blade.php',
'./resources/**/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
'./node_modules/flowbite/**/*.js',
@@ -25,6 +26,13 @@ module.exports = {
fontFamily: {
sans: ['Inter var', 'Inter', 'sans-serif', ...defaultTheme.fontFamily.sans],
},
colors: {
twitch: '#6441a5',
youtube: '#FF0000',
kick: '#53fc18',
douyu: '#ff5f3a',
huya: '#ffaa06'
}
},
},
corePlugins: {