mirror of
https://github.com/wassname/talk.git
synced 2026-07-12 23:30:20 +08:00
3947b143cb
* chore: reorganize account * chore: reorganize install * chore: reorganize auth files * chore: reorganize admin files * fix: graphql naming * chore: adapt account routing
27 lines
593 B
CSS
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);
|
|
}
|