代码拉取完成,页面将自动刷新
// uno.config.ts
import { defineConfig, presetAttributify, presetUno } from "unocss";
export default defineConfig({
presets: [
presetAttributify({
/* preset options */
}),
presetUno(),
],
//在配置unocss的配置时,为了适配全局layout组件的主题更换功能,请保证配置时,对应颜色与css变量对应。
//css变量见style目录
shortcuts: {
//居中
"flex-center": "flex items-center justify-center",
//底部固定定位
"fixed-bottom-left": "fixed bottom-0 left-0",
//字体黑色描边1px
"text-stroke-1-black": "text-stroke-1 text-stroke-black color-#fff",
},
rules: [
[/^rh-(\d+)$/, (match) => ({ height: `${+match[1]}rpx` })],
[/^rw-(\d+)$/, (match) => ({ width: `${+match[1]}rpx` })],
[/^rm-(\d+)$/, (match) => ({ marging: `${+match[1]}rpx` })],
[/^rp-(\d+)$/, (match) => ({ padding: `${+match[1]}rpx` })],
["h-no-navBar-full", { height: "calc(100vh - var(--window-top))" }],
["h-no-tabBar-full", { height: "calc(100vh - 50px)" }],
["h-no-navBar-tabBar-full", { height: "calc(100vh - var(--window-top) - 50px)" }],
//基础色系
[
"base-colcor",
{
color: "var(--uni-text-color)",
"background-color": "var(--base-color)",
},
],
//基础卡片样式,有边框阴影,圆角
[
"base-card",
{
"box-shadow": "var(--uni-box-shadow) 0px 5px 15px",
"border-radius": "15px",
"background-color": "var(--uni-bg-color)",
},
],
[
"base-btn",
{
background: "#000",
"box-shadow": "var(--uni-box-shadow) 0px 3px 8px",
color: "var(--uni-text-color)",
},
],
[
"base-text",
{
color: "var(--uni-text-color)",
},
],
],
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。