mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 19:44:21 +00:00
5542791af8
* Adjust update flow to not auto update, not publish in CI * Revert "Adjust update flow to not auto update, not publish in CI" This reverts commit 74fb382ce8d8cd9e227703ccfa8d6310bffd9dda. * First pass at new app version modal * Added app alpha notice that either warns you about alpha, or blocks the whole app. * Improve newer version detection, add unit tests * Remove native auto update behavior * Notice once per session * copy changes per PR review
54 lines
940 B
SCSS
54 lines
940 B
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
.AppAlpha {
|
|
@include cover-message;
|
|
background: $brand-info;
|
|
left: $electron-sidebar-width - 1;
|
|
|
|
&-content {
|
|
h2 {
|
|
text-align: center;
|
|
}
|
|
|
|
p {
|
|
text-align: justify;
|
|
}
|
|
|
|
&-btn {
|
|
display: block;
|
|
width: 100%;
|
|
max-width: 280px;
|
|
margin: 40px auto 0;
|
|
border: none;
|
|
padding: 0;
|
|
transition: $transition;
|
|
height: 60px;
|
|
line-height: 60px;
|
|
font-size: 22px;
|
|
background: rgba(#fff, 0.96);
|
|
color: $gray-dark;
|
|
border-radius: 4px;
|
|
|
|
&:hover {
|
|
background: #fff;
|
|
color: $gray-darker;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Fade out
|
|
&.is-fading {
|
|
pointer-events: none;
|
|
opacity: 0;
|
|
background: #fff;
|
|
transition: all 500ms ease 400ms;
|
|
|
|
.AppAlpha-content {
|
|
opacity: 0;
|
|
transform: translateY(15px);
|
|
transition: all 500ms ease;
|
|
}
|
|
}
|
|
}
|