The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

tailwind.config.js 489 B

há 11 meses
há 11 meses
há 11 meses
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. }