1 Star 0 Fork 0

lol-archiver/opgg-build-query

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tailwind.config.cjs 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
DanoR 提交于 2022-07-29 09:08 . v.1.2.0
const plugin = require('tailwindcss/plugin');
const spacing = 0.25;
const unit = 'rem';
const space = time => `${time * spacing}${unit}`;
module.exports = {
content: ['./src/index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
spacing: {
42: space(42),
78: space(78),
115: space(115),
},
boxShadow: {
mdd: '0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1)',
},
},
trans: {
DEFAULT: '0.2s',
'04': '0.4s',
'07': '0.7s',
2: '2s',
},
},
plugins: [
plugin(({ addUtilities, matchUtilities, theme }) => {
addUtilities({
// inblock=inline-block + 顶部对齐
'.inblock': {
display: 'inline-block',
verticalAlign: 'top'
},
// 文本溢出省略号
'.elli': {
overflow: 'hidden',
whiteSpace: 'nowrap',
textOverflow: 'ellipsis'
},
});
// 动画延迟
matchUtilities(
{
trans: duration => ({
transitionProperty: 'all',
transitionDuration: duration,
transform: 'translateZ(0)',
}),
},
{ values: theme('trans') }
);
}),
],
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lol-archiver/opgg-build-query.git
git@gitee.com:lol-archiver/opgg-build-query.git
lol-archiver
opgg-build-query
opgg-build-query
v1.x

搜索帮助