Files
talk/src/core/client/install/App/MainBar.css
T
Vinh 3947b143cb [CORL-423] Rearrange client files and folder (#2352)
* chore: reorganize account

* chore: reorganize install

* chore: reorganize auth files

* chore: reorganize admin files

* fix: graphql naming

* chore: adapt account routing
2019-06-11 15:33:46 +00:00

27 lines
593 B
CSS

.root {
width: 100%;
border-bottom: 2px solid var(--palette-grey-main);
padding: var(--mini-unit);
box-sizing: border-box;
background: var(--palette-text-primary);
background: linear-gradient(
to right,
var(--palette-text-primary) 0%,
var(--palette-grey-main) 100%
);
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.container {
max-width: 1080px;
margin: 0 auto;
display: flex;
justify-content: flex-start;
box-sizing: border-box;
}
.title {
color: var(--palette-text-light);
}