mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
de7d4fbaa2
* Convert bootstrap to sass instead of checked in and less * Darken body, adjust header. * First pass at tab styles, each tab will need a lot of individual love tho. * Update footer to main site content, improve responsiveness. * Missing key added. * Fix dropdowns. * Convert GenerateWallet HTML over, still needs styling. * Send form. * Current rates styled. * CurrencySwap form styles. * SwapInfoHeader styled. * Finish up swap restyling, minor usability improvements for mobile. * Fix up notifications / alert customizations * Import v3 variables. * Fix notification spacing. * Align input height base with buttons. * Revert height base, add additional bootstrap overrides. * Grid overrides. * Move overrides to their own folder. Adjust naming. * Fix inconsistencies. * Style generate wallet pt 1. * Style generate wallet pt 2 * Style generate wallet pt 3 * Fix swap * Added some missing overries, fixed the fallout. * Remove header text, indicate alpha version. * Fix radio / checkbox weights. * Bind => arrow * Convert simpledropdown to proper form select, instead of weirdly implemented nonfuncitoning dropdown. * Fix token balances buttons, footr icons.
30 lines
871 B
SCSS
30 lines
871 B
SCSS
$screen-xs: 32rem;
|
|
$screen-xs-min: $screen-xs;
|
|
$screen-sm: 51.2rem;
|
|
$screen-sm-min: $screen-sm;
|
|
$screen-md: 66.133333333rem;
|
|
$screen-md-min: $screen-md;
|
|
$screen-lg: 80rem;
|
|
$screen-lg-min: $screen-lg;
|
|
$screen-xl: 94rem;
|
|
$screen-xl-min: $screen-xl;
|
|
$screen-xs-max: ($screen-sm-min - 1);
|
|
$screen-sm-max: ($screen-md-min - 1);
|
|
$screen-md-max: ($screen-lg-min - 1);
|
|
$screen-lg-max: ($screen-xl-min - 1);
|
|
|
|
$grid-columns: 12;
|
|
$grid-gutter-width: 2rem;
|
|
$grid-float-breakpoint: $screen-sm-min;
|
|
$grid-float-breakpoint-max: ($grid-float-breakpoint - 1);
|
|
|
|
$cont-padding: 1%;
|
|
$cont-padding-lg: 3%;
|
|
$cont-width: 113rem;
|
|
$container-tablet: (48rem + $grid-gutter-width);
|
|
$container-sm: $container-tablet;
|
|
$container-desktop: (62rem + $grid-gutter-width);
|
|
$container-md: $container-desktop;
|
|
$container-large-desktop: (76rem + $grid-gutter-width);
|
|
$container-lg: $container-large-desktop;
|