The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

27 行
489 B

  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ['./index.html', './src/**/*.{vue,js,ts}'],
  4. theme: {
  5. extend: {
  6. fontSize: {
  7. 'mxs': '0.92rem',
  8. },
  9. height: {
  10. '15/16': '93.75%',
  11. '1/16': '6.25%',
  12. '11/12': '91.666666%',
  13. '1/10': '8.333333%'
  14. },
  15. lineHeight: {
  16. 'short': '0.9',
  17. 'tighter': '1.15',
  18. }
  19. },
  20. fontFamily: {
  21. 'header': ['Aleo'],
  22. }
  23. },
  24. plugins: [],
  25. }