如何更改 sanity io 用户界面中的字段样式?
How to change field style in the sanity io user interface?
如何轻松更改组件的样式?我只想在健全的用户界面中限制文本字段的高度。
每次都滚动所有文本很不舒服。我在哪里可以写这样的东西:
{
overflow-y: auto;
height: 200px;
}
我试过了patch-package。只是按照包装中的说明进行操作。
从问题中提供的屏幕截图来看,您似乎正在使用 rexxars markdown plugin for Sanity. When defining the markdown field in your schema, you have some options 进行选择。我猜你想要的是最小行数和禁用自动增长?例如:
export default {
name: 'blogPost',
title: 'Blog Post',
type: 'document',
fields: [
// ... other blogPost fields
{
name: 'body',
title: 'Body',
type: 'markdown',
options: {
minRows: 10,
autoGrow: false
}
}
]
}
如果您需要的选项不可用,请尝试创建一个 issue 或提交拉取请求,提出您需要的更改?
如何轻松更改组件的样式?我只想在健全的用户界面中限制文本字段的高度。
{
overflow-y: auto;
height: 200px;
}
我试过了patch-package。只是按照包装中的说明进行操作。
从问题中提供的屏幕截图来看,您似乎正在使用 rexxars markdown plugin for Sanity. When defining the markdown field in your schema, you have some options 进行选择。我猜你想要的是最小行数和禁用自动增长?例如:
export default {
name: 'blogPost',
title: 'Blog Post',
type: 'document',
fields: [
// ... other blogPost fields
{
name: 'body',
title: 'Body',
type: 'markdown',
options: {
minRows: 10,
autoGrow: false
}
}
]
}
如果您需要的选项不可用,请尝试创建一个 issue 或提交拉取请求,提出您需要的更改?