Changed spacing on form elements to be a tad smaller. It was just too big for my liking, and I feel this way is a lot easier.

Added cursor back on button - it was just an arrow.
Added parent-selector to the notifications, and corrected readbility of notifications.
updated the version within the css files
made rows only show up on css files where classes are enabled
made the tooltips have a dark background - even for dark themes.
This commit is contained in:
Yohn 2024-12-07 19:56:51 -05:00
parent 7ce5b5c578
commit 354887554b
256 changed files with 1699 additions and 41261 deletions

View file

@ -107,7 +107,7 @@ themeColors.forEach((themeColor, colorIndex) => {
const progress = Math.round((index / length) * 100);
const bar = "■".repeat(progress / 10);
const empty = "□".repeat(10 - progress / 10);
process.stdout.write(`[@picocss/pico] ✨ ${bar}${empty} ${color}\r`);
process.stdout.write(`[@Yohn/PicoCSS] ✨ ${bar}${empty} ${color}\r`);
};
// Loop through the versions

View file

@ -0,0 +1,14 @@
const fs = require('fs');
const path = require('path');
// Define the source and destination paths
const filesToCopy = [
{ src: 'css/pico.min.css', dest: 'docs/pico.min.css' },
{ src: 'css/pico.colors.min.css', dest: 'docs/pico.colors.min.css' }
];
// Copy each file to the destination
filesToCopy.forEach(file => {
fs.copyFileSync(file.src, file.dest);
console.log(`[@Yohns/PicoCSS] ✨ Copied new file to ${file.dest}`);
});