mirror of
https://github.com/graphql-hive/console
synced 2026-05-19 07:08:45 +00:00
21 lines
464 B
JavaScript
21 lines
464 B
JavaScript
const config = require('@theguild/tailwind-config');
|
|
const { fontFamily } = require('tailwindcss/defaultTheme');
|
|
|
|
module.exports = {
|
|
...config,
|
|
theme: {
|
|
...config.theme,
|
|
extend: {
|
|
...config.theme.extend,
|
|
fontFamily: {
|
|
display: [
|
|
'Inter var,' + fontFamily.sans.join(','),
|
|
{
|
|
fontFeatureSettings: 'normal',
|
|
fontVariationSettings: '"opsz" 32',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
},
|
|
};
|