You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
1.6 KiB
91 lines
1.6 KiB
7 years ago
|
.app-header {
|
||
7 years ago
|
align-items: center;
|
||
7 years ago
|
background: $gallery;
|
||
7 years ago
|
position: relative;
|
||
7 years ago
|
z-index: $header-z-index;
|
||
7 years ago
|
display: flex;
|
||
|
flex-flow: column nowrap;
|
||
7 years ago
|
width: 100%;
|
||
|
flex: 0 0 auto;
|
||
7 years ago
|
|
||
|
@media screen and (max-width: 575px) {
|
||
7 years ago
|
padding: 12px;
|
||
7 years ago
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
|
||
7 years ago
|
z-index: $mobile-header-z-index;
|
||
7 years ago
|
}
|
||
7 years ago
|
|
||
|
@media screen and (min-width: 576px) {
|
||
7 years ago
|
height: 75px;
|
||
|
justify-content: center;
|
||
7 years ago
|
|
||
|
&--back-drop {
|
||
|
&::after {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
height: 32px;
|
||
|
background: $gallery;
|
||
|
bottom: -32px;
|
||
|
}
|
||
|
}
|
||
7 years ago
|
}
|
||
|
|
||
6 years ago
|
&__metafox-logo {
|
||
7 years ago
|
cursor: pointer;
|
||
|
|
||
6 years ago
|
&--icon {
|
||
|
@media screen and (min-width: $break-large) {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
7 years ago
|
|
||
6 years ago
|
&--horizontal {
|
||
|
@media screen and (max-width: $break-small) {
|
||
|
display: none;
|
||
|
}
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|
||
7 years ago
|
|
||
7 years ago
|
&__contents {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
flex-flow: row nowrap;
|
||
|
width: 100%;
|
||
7 years ago
|
|
||
7 years ago
|
@media screen and (max-width: 575px) {
|
||
|
height: 100%;
|
||
|
}
|
||
7 years ago
|
|
||
7 years ago
|
@media screen and (min-width: 576px) {
|
||
|
width: 85vw;
|
||
|
}
|
||
|
|
||
|
@media screen and (min-width: 769px) {
|
||
|
width: 80vw;
|
||
|
}
|
||
|
|
||
|
@media screen and (min-width: 1281px) {
|
||
|
width: 62vw;
|
||
|
}
|
||
7 years ago
|
}
|
||
|
|
||
7 years ago
|
&__logo-container {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
cursor: pointer;
|
||
7 years ago
|
}
|
||
|
|
||
7 years ago
|
&__account-menu-container {
|
||
|
display: flex;
|
||
|
flex-flow: row nowrap;
|
||
|
align-items: center;
|
||
7 years ago
|
}
|
||
7 years ago
|
|
||
6 years ago
|
&__network-component-wrapper {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
7 years ago
|
}
|
||
7 years ago
|
}
|