2017-08-06 22:24:06 +02:00
|
|
|
.app-header {
|
2017-08-07 03:50:23 +02:00
|
|
|
align-items: center;
|
2022-03-16 15:49:25 +01:00
|
|
|
background: var(--color-background-alternative);
|
2017-08-07 03:50:23 +02:00
|
|
|
position: relative;
|
2017-08-22 02:59:08 +02:00
|
|
|
z-index: $header-z-index;
|
2017-09-05 00:55:14 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
2018-05-11 01:51:26 +02:00
|
|
|
width: 100%;
|
|
|
|
flex: 0 0 auto;
|
2017-08-07 03:50:23 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2019-06-13 04:56:04 +02:00
|
|
|
padding: 1rem;
|
2017-08-22 02:59:08 +02:00
|
|
|
z-index: $mobile-header-z-index;
|
2017-08-07 03:50:23 +02:00
|
|
|
}
|
2017-09-14 18:56:40 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-min {
|
2017-10-13 00:46:09 +02:00
|
|
|
height: 75px;
|
|
|
|
justify-content: center;
|
2018-01-10 01:45:39 +01:00
|
|
|
}
|
|
|
|
|
2018-08-19 03:41:19 +02:00
|
|
|
&__metafox-logo {
|
|
|
|
&--icon {
|
2019-06-13 04:56:04 +02:00
|
|
|
height: 32px;
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-min {
|
2018-08-19 03:41:19 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2018-05-11 01:51:26 +02:00
|
|
|
|
2018-08-19 03:41:19 +02:00
|
|
|
&--horizontal {
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2018-08-19 03:41:19 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2017-10-13 00:46:09 +02:00
|
|
|
}
|
2017-09-14 18:56:40 +02:00
|
|
|
}
|
2017-08-06 22:24:06 +02:00
|
|
|
|
2023-04-28 14:23:56 +02:00
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(build-mmi)
|
|
|
|
&__custody-logo {
|
|
|
|
&--icon {
|
|
|
|
height: 16px;
|
|
|
|
margin-left: 15px;
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
|
2018-05-11 01:51:26 +02:00
|
|
|
&__contents {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
width: 100%;
|
2017-08-31 02:02:13 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2018-05-11 01:51:26 +02:00
|
|
|
height: 100%;
|
|
|
|
}
|
2017-09-14 18:56:40 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-min {
|
2018-05-11 01:51:26 +02:00
|
|
|
width: 85vw;
|
|
|
|
}
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-md-min {
|
2018-05-11 01:51:26 +02:00
|
|
|
width: 80vw;
|
|
|
|
}
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-lg-min {
|
2018-05-11 01:51:26 +02:00
|
|
|
width: 62vw;
|
|
|
|
}
|
2017-09-05 00:55:14 +02:00
|
|
|
}
|
|
|
|
|
2018-05-11 01:51:26 +02:00
|
|
|
&__logo-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2019-04-25 05:01:24 +02:00
|
|
|
flex: 0 0 auto;
|
2021-09-13 18:05:53 +02:00
|
|
|
margin-right: 1rem;
|
2019-12-05 00:57:30 +01:00
|
|
|
|
|
|
|
&--clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-09-05 00:55:14 +02:00
|
|
|
}
|
|
|
|
|
2018-05-11 01:51:26 +02:00
|
|
|
&__account-menu-container {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-items: center;
|
2019-04-25 05:01:24 +02:00
|
|
|
flex: 1 1 auto;
|
|
|
|
width: 0;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
justify-content: flex-end;
|
2017-08-31 02:02:13 +02:00
|
|
|
}
|
2017-10-18 07:36:53 +02:00
|
|
|
|
2018-08-19 03:41:19 +02:00
|
|
|
&__network-component-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2019-04-25 05:01:24 +02:00
|
|
|
flex: 1 0 auto;
|
|
|
|
width: 0;
|
|
|
|
justify-content: flex-end;
|
2021-01-27 17:51:59 +01:00
|
|
|
}
|
2022-06-01 19:09:13 +02:00
|
|
|
|
|
|
|
.account-menu__icon {
|
|
|
|
position: relative;
|
2022-06-15 19:49:18 +02:00
|
|
|
border: 0;
|
|
|
|
background: none;
|
2022-06-01 19:09:13 +02:00
|
|
|
|
|
|
|
&__notification-count {
|
|
|
|
position: absolute;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
min-width: 16px;
|
|
|
|
min-height: 16px;
|
|
|
|
font-size: 10px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: var(--color-primary-default);
|
|
|
|
color: var(--color-primary-inverse);
|
|
|
|
}
|
|
|
|
}
|
2017-08-06 22:24:06 +02:00
|
|
|
}
|