mirror of
https://github.com/picocss/pico.git
synced 2025-04-21 00:56:14 -04:00
Closes Legend element not styled in role="group"
Yohn/PicoCSS#23
Added compatability with `.dropdown` to the `role=group` Put a dropdown submenu in the group examples Improved borders on `[role=group] > label, [role=group] > legend` to ensure the same size as other group elements
This commit is contained in:
parent
324f6fcef4
commit
ddf41a191a
265 changed files with 13809 additions and 4063 deletions
15
scripts/copy-docs-css-files-dev.js
Normal file
15
scripts/copy-docs-css-files-dev.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
// Define the source and destination paths
|
||||
const filesToCopy = [
|
||||
{ src: 'css/pico.indigo.css', dest: 'docs/pico.css' },
|
||||
{ src: 'css/pico.indigo.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}`);
|
||||
});
|
|
@ -3,8 +3,8 @@ const path = require('path');
|
|||
|
||||
// Define the source and destination paths
|
||||
const filesToCopy = [
|
||||
{ src: 'css/pico.indigo.css', dest: 'docs/pico.css' },
|
||||
{ src: 'css/pico.indigo.min.css', dest: 'docs/pico.min.css' },
|
||||
{ src: 'css/pico.css', dest: 'docs/pico.css' },
|
||||
{ src: 'css/pico.min.css', dest: 'docs/pico.min.css' },
|
||||
{ src: 'css/pico.colors.min.css', dest: 'docs/pico.colors.min.css' }
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue