1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-29 15:50:28 +01:00
metamask-extension/ui/pages/onboarding-flow/onboarding-app-header/index.scss

68 lines
1.1 KiB
SCSS
Raw Normal View History

.onboarding-app-header {
align-items: center;
2022-03-19 01:43:33 +01:00
background: var(--color-background-default);
position: relative;
z-index: $header-z-index;
display: flex;
flex-flow: column nowrap;
width: 100%;
flex: 0 0 auto;
2022-08-04 16:03:02 +02:00
@include screen-sm-max {
padding: 16px;
z-index: $mobile-header-z-index;
}
2022-08-04 16:03:02 +02:00
@include screen-sm-min {
height: 75px;
justify-content: center;
}
&__metafox-logo {
&--icon {
height: 32px;
2022-08-04 16:03:02 +02:00
@include screen-sm-min {
display: none;
}
}
&--horizontal {
2022-08-04 16:03:02 +02:00
@include screen-sm-max {
display: none;
}
}
}
&__contents {
display: flex;
flex-flow: row nowrap;
width: 100%;
justify-content: space-between;
2022-08-04 16:03:02 +02:00
@include screen-sm-max {
height: 100%;
}
2022-08-04 16:03:02 +02:00
@include screen-sm-min {
width: 85vw;
}
2022-08-04 16:03:02 +02:00
@include screen-md-min {
width: 90vw;
}
2022-08-04 16:03:02 +02:00
@include screen-lg-min {
width: 62vw;
}
}
&__logo-container {
display: flex;
flex-direction: row;
align-items: center;
flex: 0 0 auto;
margin-right: 1rem;
}
}