mirror of
https://github.com/picocss/pico.git
synced 2025-04-21 17:16:14 -04:00

- Updated tooltips to go multiline, max width of 250px. -Updated card footer, to remove the margin from the last element if they are buttons or groups when in the footer - Made container, grid, and row classes to have a parent class, so they will not effect rest of page. This will only work if you use that style css. - Added tabs - Added floating labels - Added responsive nav hamburger menu Let me know if you find any bugs or have ideas for improvements!
14 lines
442 B
JavaScript
14 lines
442 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
// Define the source and destination paths
|
|
const filesToCopy = [
|
|
{ src: 'css/pico.lime.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}`);
|
|
});
|