mirror of
https://github.com/picocss/pico.git
synced 2025-04-24 18:26:14 -04:00
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:
parent
7ce5b5c578
commit
354887554b
256 changed files with 1699 additions and 41261 deletions
|
@ -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
|
||||
|
|
14
scripts/copy-docs-css-files.js
Normal file
14
scripts/copy-docs-css-files.js
Normal 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}`);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue