The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tailwind.config.js 489 B

11 달 전
11 달 전
11 달 전
1234567891011121314151617181920212223242526
  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. }