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 356 B

pirms 2 mēnešiem
12345678910111213141516171819
  1. /** @type {import('tailwindcss').Config} */
  2. export default {
  3. content: ['./index.html', './src/**/*.{vue,js,ts}'],
  4. theme: {
  5. extend: {
  6. height: {
  7. '15/16': '93.75%',
  8. '1/16': '6.25%',
  9. '11/12': '91.666666%',
  10. '1/10': '8.333333%'
  11. }
  12. },
  13. fontFamily: {
  14. 'header': ['Aleo'],
  15. }
  16. },
  17. plugins: [],
  18. }