mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
0efd00b755
* adding product tour component * updated control for prevIcon * updated app-header and product tour * updated css * updated message strings * updated tests * removed console statement * added selector for product tour * updated test * updated test * updated state with steps * Update ui/components/multichain/product-tour-popover/product-tour-popover.js Co-authored-by: Garrett Bear <gwhisten@gmail.com> * Update ui/components/multichain/product-tour-popover/product-tour-popover.js Co-authored-by: Garrett Bear <gwhisten@gmail.com> * Update ui/components/multichain/product-tour-popover/product-tour-popover.js Co-authored-by: Garrett Bear <gwhisten@gmail.com> * Update ui/components/multichain/product-tour-popover/product-tour-popover.js Co-authored-by: Garrett Bear <gwhisten@gmail.com> * Update ui/components/multichain/product-tour-popover/product-tour-popover.js Co-authored-by: Garrett Bear <gwhisten@gmail.com> * Update ui/components/multichain/product-tour-popover/product-tour-popover.js Co-authored-by: Garrett Bear <gwhisten@gmail.com> * Update ui/components/multichain/product-tour-popover/product-tour-popover.js Co-authored-by: Garrett Bear <gwhisten@gmail.com> * Update ui/components/multichain/product-tour-popover/product-tour-popover.js Co-authored-by: Garrett Bear <gwhisten@gmail.com> * Update ui/components/multichain/product-tour-popover/product-tour-popover.js Co-authored-by: Garrett Bear <gwhisten@gmail.com> * Update ui/components/multichain/product-tour-popover/product-tour-popover.scss Co-authored-by: Garrett Bear <gwhisten@gmail.com> * fixed lint errors * updated lint error * added changes for rtl support * added changes for rtl support * fixed lint errors * Some suggestions (#18676) * updated messages and indentation * fixed popup close on my final step * updated rtl classname condition --------- Co-authored-by: Garrett Bear <gwhisten@gmail.com> Co-authored-by: George Marshall <george.marshall@consensys.net>
67 lines
1.2 KiB
SCSS
67 lines
1.2 KiB
SCSS
.multichain-app-header {
|
|
$height-screen-sm-max: 100%;
|
|
$width-screen-sm-min: 85vw;
|
|
$width-screen-md-min: 80vw;
|
|
$width-screen-lg-min: 62vw;
|
|
|
|
flex-flow: column nowrap;
|
|
z-index: 55;
|
|
min-height: 64px;
|
|
|
|
&__contents {
|
|
display: grid;
|
|
grid-template-columns: 1fr 2fr 1fr;
|
|
height: 64px;
|
|
|
|
@include screen-sm-max {
|
|
height: $height-screen-sm-max;
|
|
}
|
|
|
|
@include screen-sm-min {
|
|
width: $width-screen-sm-min;
|
|
}
|
|
|
|
@include screen-md-min {
|
|
width: $width-screen-md-min;
|
|
}
|
|
|
|
@include screen-lg-min {
|
|
width: $width-screen-lg-min;
|
|
}
|
|
|
|
&--avatar-network {
|
|
padding: 0; // TODO: Remove once https://github.com/MetaMask/metamask-extension/pull/17006 is merged
|
|
}
|
|
}
|
|
|
|
&__lock-contents {
|
|
flex-flow: row nowrap;
|
|
height: 64px;
|
|
|
|
@include screen-sm-max {
|
|
height: $height-screen-sm-max;
|
|
}
|
|
|
|
@include screen-sm-min {
|
|
width: $width-screen-sm-min;
|
|
}
|
|
|
|
@include screen-md-min {
|
|
width: $width-screen-md-min;
|
|
}
|
|
|
|
@include screen-lg-min {
|
|
width: $width-screen-lg-min;
|
|
}
|
|
}
|
|
}
|
|
|
|
.multichain-app-header-shadow {
|
|
box-shadow: var(--shadow-size-md) var(--color-shadow-default);
|
|
}
|
|
|
|
.multichain-app-header-logo {
|
|
height: 75px;
|
|
flex: 0 0 auto;
|
|
}
|