mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 19:44:21 +00:00
aa0f9cd455
* Frameless Electron. Separate electron template. Generecize navigation link. Move nav info to config. * Add controls for language and node, network status to sidebar. * Sticky headers * Move custom node modal into standalone component. Render modals via portal. Add custom node modal opening to electron node list. * Conditional styling based on environment. * Fix active node highlight * Add frame back in, draggable only on OSX, fix sidebar scroll. * Remove panel content after delay. * Adjust window sizes * Style desktop help nav icon * Remove unused var * Move style to param * Remove unused * Update snapshot * Fix oversized stretching, zindex fighting * Make electron work better with various screen sizes * Remove not-working https option for electron * Add beta banner * Fix web footer * Address changes
33 lines
688 B
SCSS
33 lines
688 B
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
.OnboardModal {
|
|
// Additional styles for the Stepper Component
|
|
&-stepper {
|
|
a,
|
|
span {
|
|
position: relative;
|
|
bottom: 3px;
|
|
}
|
|
}
|
|
@media screen and (max-width: $screen-sm) {
|
|
&-stepper {
|
|
// The markup is inline style'd with no classes, so we're doing this in a
|
|
// horrible, horrible way
|
|
> div > div > div {
|
|
// Lines
|
|
> div {
|
|
opacity: 0;
|
|
}
|
|
// Circle
|
|
> div:nth-child(1) {
|
|
opacity: 1;
|
|
height: 8px !important;
|
|
width: 8px !important;
|
|
color: transparent !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|