mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
40e4a3653f
* WIP commit * Moving copy out of messages.json, styling changes * handling scroll button click and disable logic * moving scrollButton up to popover component, adding logic for accepting terms of use in popover and onboarding flows * adding terms of use to e2e wallet creation/import * adjusting failing unit test * fixing QR code e2e * updating welcome test * setting app state in fixtures * Update app/scripts/controllers/app-state.js removing console log Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/components/app/terms-of-use-popup/terms-of-use-popup.stories.js adding args to ToU popup storybook Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * Update ui/components/app/terms-of-use-popup/terms-of-use-popup.js Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net> * updating DS components in terms of use * popover styling changes * adding metametrics tracking * editing scrollbutton behavior * adding unit test * code fencing --------- Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net>
60 lines
1.0 KiB
SCSS
60 lines
1.0 KiB
SCSS
@import "./react-gallery/carousel.min.css";
|
|
|
|
.onboarding-welcome {
|
|
.control-dots .dot {
|
|
background: var(--color-icon-muted);
|
|
box-shadow: none;
|
|
|
|
&.selected {
|
|
background: var(--color-icon-default);
|
|
}
|
|
}
|
|
|
|
/* next and previous arrow colors */
|
|
.carousel.carousel-slider .control-arrow {
|
|
opacity: 1;
|
|
color: var(--color-icon-default);
|
|
|
|
@include screen-sm-min {
|
|
padding: 40px;
|
|
}
|
|
}
|
|
|
|
.carousel .control-next.control-arrow::before {
|
|
border-left-color: var(--color-icon-default);
|
|
}
|
|
|
|
.carousel .control-prev.control-arrow::before {
|
|
border-right-color: var(--color-icon-default);
|
|
}
|
|
|
|
.carousel.carousel-slider .control-arrow:hover {
|
|
background: none;
|
|
}
|
|
|
|
&__mascot {
|
|
width: 250px;
|
|
height: 250px;
|
|
margin: 20px auto;
|
|
}
|
|
|
|
&__image {
|
|
text-align: center;
|
|
margin: 20px auto;
|
|
}
|
|
|
|
&__buttons {
|
|
max-width: 300px;
|
|
margin: 40px auto 0 auto;
|
|
|
|
li {
|
|
margin-bottom: 24px;
|
|
}
|
|
}
|
|
|
|
&__terms-checkbox {
|
|
margin: 0;
|
|
align-self: flex-start;
|
|
}
|
|
}
|