ESP8266 part of the f105-motor-demo project (see f105-motor-demo_stm32)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
758 B

@charset "UTF-8";
/// Displays the visual grid when set to true. The overlaid grid may be few pixels off depending on the browser's rendering engine and pixel rounding algorithm. Set with the `!global` flag.
///
/// @type Bool
$visual-grid: false !default;
/// Sets the visual grid color. Set with `!global` flag.
///
/// @type Color
$visual-grid-color: #eee !default;
/// Sets the `z-index` property of the visual grid. Can be `back` (behind content) or `front` (in front of content). Set with `!global` flag.
///
/// @type String
$visual-grid-index: back !default;
/// Sets the opacity property of the visual grid. Set with `!global` flag.
///
/// @type Number (unitless)
$visual-grid-opacity: 0.4 !default;
$visual-grid-breakpoints: () !default;