devel #293

Merged
inhji merged 2 commits from devel into main 2023-09-09 12:55:11 +02:00
3 changed files with 3 additions and 2 deletions

View file

@ -15,6 +15,7 @@ const plugins = [
postCssPlugin({
postcss: {
plugins: [
require('tailwindcss/nesting'),
require('tailwindcss'),
require('autoprefixer')
]

View file

@ -29,7 +29,7 @@
& nav ul {
@apply flex;
& a { @apply p-3 rounded hover:bg-primary-500 transition; }
& a { @apply p-3 rounded hover:bg-primary-700 transition; }
}
}

View file

@ -17,7 +17,7 @@ module.exports = {
container: { center: true },
extend: {
colors: {
primary: colors.pink
primary: colors.sky
}
}
},