新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
17 lines
650 B
JavaScript
17 lines
650 B
JavaScript
var postcss = require('postcss');
|
|
|
|
module.exports = function(decl) {
|
|
if (decl.prop === 'flex') {
|
|
var values = postcss.list.space(decl.value);
|
|
var flexGrow = values[0];
|
|
var flexShrink = values[1] || '1';
|
|
var flexBasis = values[2] || '0%';
|
|
// Safari seems to hate '0%' and the others seems to make do with a nice value when basis is missing,
|
|
// so if we see a '0%', just remove it. This way it'll get adjusted for any other cases where '0%' is
|
|
// already defined somewhere else.
|
|
if (flexBasis === '0%') flexBasis = null;
|
|
decl.value =
|
|
flexGrow + ' ' + flexShrink + (flexBasis ? ' ' + flexBasis : '');
|
|
}
|
|
};
|