The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

tailwind.config.js 356 B

il y a 2 mois
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. }