The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

tailwind.config.js 489 B

11 miesięcy temu
11 miesięcy temu
11 miesięcy temu
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. }