mirror of
https://github.com/logos-storage/logos-storage-marketplace-ui.git
synced 2026-01-28 10:13:11 +00:00
61 lines
1.0 KiB
CSS
61 lines
1.0 KiB
CSS
.appBar {
|
|
height: 80px;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid var(--codex-border-color);
|
|
view-transition-name: main-header;
|
|
display: flex;
|
|
padding: 20px 40px 20px 40px;
|
|
border-bottom: 1px solid #2b303b;
|
|
box-sizing: border-box;
|
|
background-color: #1c1c1c;
|
|
}
|
|
|
|
.appBar-burger {
|
|
cursor: pointer;
|
|
color: var(--codex-color);
|
|
display: flex;
|
|
}
|
|
|
|
.appBar,
|
|
.appBar-left,
|
|
.appBar-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.appBar-icon {
|
|
background: #141414;
|
|
height: 48px;
|
|
width: 48px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid #353639;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.appBar-title {
|
|
font-family: Inter;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
letter-spacing: -0.015em;
|
|
color: white;
|
|
}
|
|
|
|
.appBar-subtitle {
|
|
font-family: Inter;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
letter-spacing: -0.006em;
|
|
color: #969696cc;
|
|
}
|
|
|
|
@media (min-width: 1000px) {
|
|
.appBar-burger {
|
|
display: none;
|
|
}
|
|
}
|