mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-20 16:09:28 +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
111 lines
1.9 KiB
SCSS
111 lines
1.9 KiB
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
.SupportPage {
|
|
padding: 0;
|
|
max-width: 920px;
|
|
margin: 0 auto;
|
|
|
|
&-mycrypto {
|
|
text-align: center;
|
|
|
|
&-logo {
|
|
display: block;
|
|
margin: 0 auto $space;
|
|
max-width: 360px;
|
|
}
|
|
|
|
&-about {
|
|
max-width: 700px;
|
|
margin: 0 auto $space;
|
|
}
|
|
|
|
&-social {
|
|
margin-bottom: $space-sm;
|
|
|
|
&-link {
|
|
margin: 0 .45rem;
|
|
color: $text-color;
|
|
opacity: 0.3;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.sm-icon {
|
|
font-size: 1.3rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-legal {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
&-text {
|
|
margin: 0 $space-sm;
|
|
color: $gray-light;
|
|
font-size: $font-size-xs-bump;
|
|
|
|
a {
|
|
color: $gray-light;
|
|
|
|
&:hover {
|
|
color: $gray-darker;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&-affiliates-title,
|
|
&-products-title,
|
|
&-donate-title {
|
|
text-align: center;
|
|
margin-top: 0;
|
|
margin-bottom: $space;
|
|
}
|
|
|
|
&-donate {
|
|
text-align: center;
|
|
|
|
&-type {
|
|
&-currency {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-weight: bold;
|
|
font-size: $font-size-small;
|
|
margin-bottom: $space-xs;
|
|
|
|
&-icon {
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: $space-xs;
|
|
background-size: 100%;
|
|
|
|
&.is-ETH {
|
|
background-image: url('~assets/images/ether.png');
|
|
}
|
|
|
|
&.is-BTC {
|
|
background-image: url('~assets/images/bitcoin.png');
|
|
}
|
|
}
|
|
}
|
|
|
|
&-address {
|
|
display: block;
|
|
padding: $space-xs $space-sm;
|
|
background: $gray-lightest;
|
|
border: 1px solid $gray-lighter;
|
|
font-size: $font-size-xs;
|
|
border-radius: 4px;
|
|
word-wrap: break-word;
|
|
@include mono;
|
|
}
|
|
}
|
|
}
|
|
}
|