How to customize Ant.design styles
问题 Who knows how to customize Ant.design styles in proper way? For example, I want to change the default backgroundColor and height of Header section: import React, { Component } from 'react'; import { Form, Layout } from 'antd'; const { Header, Footer, Sider, Content } = Layout; export default class Login extends Component { render () { return ( <div> <Layout> <Header style={{backgroundColor: '#555555', height: '5vh'}}>header</Header> <Layout> <Content>main content</Content> </Layout> <Footer