The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 

20 рядки
356 B

  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ['./index.html', './src/**/*.{vue,js,ts}'],
  4. theme: {
  5. extend: {
  6. height: {
  7. '15/16': '93.75%',
  8. '1/16': '6.25%',
  9. '11/12': '91.666666%',
  10. '1/10': '8.333333%'
  11. }
  12. },
  13. fontFamily: {
  14. 'header': ['Aleo'],
  15. }
  16. },
  17. plugins: [],
  18. }