45 lines
776 B
Plaintext
45 lines
776 B
Plaintext
.header {
|
|
display: flex;
|
|
background: #eee;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
position: fixed;
|
|
width: 100%;
|
|
z-index: 1;
|
|
height: 50px;
|
|
position: absolute;
|
|
|
|
.middle {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex: 1;
|
|
align-items: center;
|
|
|
|
.icon {
|
|
height: 30px;
|
|
width: 30px;
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin: 10px;
|
|
}
|
|
|
|
.name {
|
|
font-size: 16px;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.header_mobile {
|
|
background: var(--oak-color-primary);
|
|
|
|
.backIcon {
|
|
color: #fff;
|
|
}
|
|
|
|
.name {
|
|
font-size: 16px;
|
|
color: #fff;
|
|
}
|
|
} |