UNPKG

saepenatus

Version:

Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, mul

26 lines (21 loc) 506 B
// tailwind.config.cjs const config = require('@svelteness/kit-docs/tailwind.config.cjs') module.exports = { ...config, content: [ 'src/**/*.svelte', './node_modules/@svelteness/kit-docs/client/kit-docs/**/*.svelte', // Add this instead if you're using the default theme. "'./node_modules/@svelteness/kit-docs/client/**/*.svelte'" ], plugins: [...config.plugins, overrides] } function overrides() { return { css: { h5: { color: '#efefef' } } } }