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:
JavaScript
x
21
21
1
import React, { Component } from 'react';
2
import { Form, Layout } from 'antd';
3
const { Header, Footer, Sider, Content } = Layout;
4
5
export default class Login extends Component {
6
7
render () {
8
return (
9
<div>
10
<Layout>
11
<Header style={{backgroundColor: '#555555', height: '5vh'}}>header</Header>
12
<Layout>
13
<Content>main content</Content>
14
</Layout>
15
<Footer>footer</Footer>
16
</Layout>
17
</div>
18
)
19
}
20
}
21
Is it ok, or there is a better way to customize styles? Because I have not found some component’s attributes or smth. like this.
Advertisement
Answer
Antd has externized most of their styling variable in LESS variables
as you can see in
https://github.com/ant-design/ant-design/blob/master/components/style/themes/default.less
To be able to overwrite those variables you need to use modifyVar
function from LESS
you can find more about theming here
So to your specific question, @layout-header-background
does the job