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.
 
 
 
 
 
 
f105-motor-demo_esp/html_src/sass/lib/neat/grid/_display-context.scss

28 lines
669 B

@charset "UTF-8";
/// Changes the display property used by other mixins called in the code block argument.
///
/// @param {String} $display [block]
/// Display value to be used within the block. Can be `table` or `block`.
///
/// @example scss
/// @include display-context(table) {
/// .display-table {
/// @include span-columns(6);
/// }
/// }
///
/// @example css
/// .display-table {
/// display: table-cell;
/// ...
/// }
@mixin display-context($display: block) {
$scope-display: $container-display-table;
$container-display-table: $display == table !global;
@content;
$container-display-table: $scope-display !global;
}