The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

tailwind.config.js 489 B

pirms 11 mēnešiem
pirms 11 mēnešiem
pirms 11 mēnešiem
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. }