fixed tailwind

This commit is contained in:
tuxiu21 2024-03-09 21:48:39 +08:00
parent 537b44433f
commit 55cd8743c6
5 changed files with 1770 additions and 1 deletions

1751
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

6
postcss.config.js Normal file
View File

@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

View File

@ -1,5 +1,6 @@
<template>
<nav class="text-base z-50 sticky top-0 bg-white border-gray-200">
<!-- <div class="text-sky-600">000</div> -->
<div class="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-4">
<a class="flex items-center space-x-3 rtl:space-x-reverse" href="/src/js">
<span class="self-center text-2xl font-semibold whitespace-nowrap">LOGO</span>

11
tailwind.config.js Normal file
View File

@ -0,0 +1,11 @@
// /** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}