The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

tailwind.config.js 356 B

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. }