| 1234567891011121314151617181920212223242526272829303132333435363738 |
- .root {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 72px;
- padding: 0 24px;
- background: var(--theme-background);
- border-bottom: 1px solid var(--theme-border);
- @media (max-width: 768px) {
- padding: 0 16px;
- height: 64px;
- }
- }
- .left {
- display: flex;
- align-items: center;
- gap: 16px;
- }
- .title {
- font-size: 20px;
- font-weight: 600;
- color: var(--theme-headline);
- margin: 0;
- @media (max-width: 768px) {
- font-size: 18px;
- }
- }
- .right {
- display: flex;
- align-items: center;
- gap: 16px;
- height: 100%;
- }
|