61 lines
1.0 KiB
CSS
Raw Normal View History

2024-10-22 15:37:31 +02:00
.appBar {
2024-10-25 19:36:49 +02:00
height: 80px;
2024-10-22 15:37:31 +02:00
justify-content: space-between;
border-bottom: 1px solid var(--codex-border-color);
view-transition-name: main-header;
display: flex;
2024-10-25 19:36:49 +02:00
padding: 20px 40px 20px 40px;
border-bottom: 1px solid #2b303b;
box-sizing: border-box;
background-color: #1c1c1c;
2024-10-22 15:37:31 +02:00
}
.appBar-burger {
cursor: pointer;
color: var(--codex-color);
display: flex;
}
.appBar,
.appBar-left,
.appBar-right {
display: flex;
align-items: center;
2024-10-25 19:36:49 +02:00
gap: 16px;
2024-10-22 15:37:31 +02:00
}
2024-10-25 19:36:49 +02:00
.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;
2024-10-22 15:37:31 +02:00
}
@media (min-width: 1000px) {
.appBar-burger {
display: none;
}
}