For example, to override the AppBar (https://material-ui-next.com/api/app-bar/) root class we can do the following:
1 - Add the property classes in the AppBar component:
<AppBar classes={{root: 'my-root-class'}}For example, to override the AppBar (https://material-ui-next.com/api/app-bar/) root class we can do the following:
1 - Add the property classes in the AppBar component:
<AppBar classes={{root: 'my-root-class'}}| version: '2' | |
| services: | |
| wordpress: | |
| image: wordpress | |
| expose: | |
| - 80 | |
| environment: | |
| WORDPRESS_DB_PASSWORD: example |
| CREATE TABLE IF NOT EXISTS country( | |
| id SERIAL not null, | |
| cow_id integer not null, | |
| name varchar(255) not null, | |
| abbreviation varchar(5) not null, | |
| primary key(id, cow_id) | |
| ); | |
| INSERT INTO country(cow_id, name, abbreviation) VALUES |