在react-admin中自定义按钮的CSS可以通过以下步骤实现:
customButton.css
。.custom-button {
background-color: #ff0000;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
.custom-button:hover {
background-color: #ff3333;
}
import
语句将CSS文件导入到你的组件中。例如:import React from 'react';
import './customButton.css';
const CustomButton = () => {
return (
<button className="custom-button">自定义按钮</button>
);
}
export default CustomButton;
className
属性将自定义的CSS类名应用到按钮上。例如:import React from 'react';
import CustomButton from './CustomButton';
const MyPage = () => {
return (
<div>
<h1>我的页面</h1>
<CustomButton />
</div>
);
}
export default MyPage;
通过以上步骤,你可以在react-admin中自定义按钮的CSS样式。你可以根据需要修改自定义的CSS文件中的样式,以满足你的具体需求。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云