2018-04-16 23:30:58 +00:00
|
|
|
// In electron, we have a sidebar besides the content, so the media queries
|
|
|
|
// need to shrink to reflect that
|
|
|
|
$screen-xs: 512px;
|
|
|
|
$screen-sm: 820px;
|
|
|
|
$screen-md: 1060px;
|
|
|
|
$screen-lg: 1280px;
|
|
|
|
$screen-xl: 1440px;
|
|
|
|
@if ($is-electron) {
|
|
|
|
$screen-xs: $screen-xs + $electron-sidebar-width;
|
|
|
|
$screen-sm: $screen-sm + $electron-sidebar-width;
|
|
|
|
$screen-md: $screen-md + $electron-sidebar-width;
|
|
|
|
$screen-lg: $screen-lg + $electron-sidebar-width;
|
|
|
|
$screen-xl: $screen-xl + $electron-sidebar-width;
|
|
|
|
}
|
|
|
|
|
v3 Style Import (#151)
* 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.
2017-09-05 19:52:01 +00:00
|
|
|
$screen-xs-min: $screen-xs;
|
|
|
|
$screen-sm-min: $screen-sm;
|
|
|
|
$screen-md-min: $screen-md;
|
|
|
|
$screen-lg-min: $screen-lg;
|
|
|
|
$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;
|