![image](/attachments/3a106d40-0cec-4db9-88a2-9f6e08843907) Co-authored-by: sealday <zhanglin@daoyoucloud.com> Reviewed-on: daoyoucloud/tachybase#1036 Co-authored-by: bai.zixv <bai.zixv@foxmail.com> Co-committed-by: bai.zixv <bai.zixv@foxmail.com>
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
import { createStyles } from '@tachybase/client';
|
|
|
|
export const useStyles = createStyles(({ token }) => {
|
|
return {
|
|
button: {
|
|
// @ts-ignore
|
|
color: token.colorTextHeaderMenu + ' !important',
|
|
},
|
|
};
|
|
});
|