32 lines
500 B
CSS
32 lines
500 B
CSS
.locationContainer {
|
|
position: fixed;
|
|
background-color: var(--white);
|
|
left: 40px;
|
|
right: 0px;
|
|
height: 70px;
|
|
overflow: hidden;
|
|
z-index: 100;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.locationContainer a,
|
|
.locationContainer button,
|
|
.locationContainer [role="button"] {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.locationTitle {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.locationTitle h1 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.locationContainer {
|
|
left: 6px;
|
|
}
|
|
}
|