zoom a medias

This commit is contained in:
2025-08-05 18:22:33 +02:00
parent e7283938df
commit fe02798326
141 changed files with 2639 additions and 341 deletions

View File

@@ -0,0 +1,12 @@
const fs = require('fs');
const path = require('path');
const iconsDir = path.join(__dirname, 'public', 'assets', 'icons');
fs.readdirSync(iconsDir).forEach(file => {
if (file.endsWith('.svg')) {
const filePath = path.join(iconsDir, file);
let content = fs.readFileSync(filePath, 'utf8');
content = content.replace(/stroke="#[0-9a-fA-F]{3,6}"/g, 'stroke="currentColor"');
fs.writeFileSync(filePath, content, 'utf8');
}
});