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. }