Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/espterm/espterm-front-end/src/commit/75496b8b005bdfd520e7c44e33fa218089d61c8f/sass/lib/bourbon/addons/_padding.scss You should set ROOT_URL correctly, otherwise the web may not work correctly.
ESPTerm web interface submodule, separated to make testing and development easier
 
 
 
 
 
espterm-front-end/sass/lib/bourbon/addons/_padding.scss

26 lines
598 B

@charset "UTF-8";
/// Provides a quick method for targeting `padding` on specific sides of a box. Use a `null` value to “skip” a side.
///
/// @param {Arglist} $vals
/// List of arguments
///
/// @example scss - Usage
/// .element {
/// @include padding(12vh null 10px 5%);
/// }
///
/// @example css - CSS Output
/// .element {
/// padding-bottom: 10px;
/// padding-left: 5%;
/// padding-top: 12vh;
/// }
///
/// @require {mixin} directional-property
///
/// @output `padding`
@mixin padding($vals...) {
@include directional-property(padding, false, $vals...);
}