Sha256: d961da321d7c3f25dc4e16249129c6dced2c2de7829b4d05e8431ff554907728
Contents?: true
Size: 1.79 KB
Versions: 74
Compression:
Stored size: 1.79 KB
Contents
//// /// @group logo //// /// Variant of logo to display: /// /// - `"first-page"`: Background image on first page. /// /// - `"all-pages"`: Background image on all pages. /// /// - `"watermark"`: Use `.header_logo` element as logo. $logo-variant: "first-page" !default; /// Top position of logo. $logo-top: 30px !default; /// Height of the logo. (Non-watermark variants only) $logo-phone-top: null !default; /// Width of the logo. (Watermark variant only) $logo-width: 100px !default; /// Width of the logo in percent. (Non-watermark variants only) $logo-relative-width: 13% !default; /// Min Width of the logo. (Non-watermark variants only) $logo-min-width: 100px !default; /// Max Width of the logo. (Non-watermark variants only) $logo-max-width: 221px !default; /// Height of the logo. $logo-height: 50px !default; /// Height of the logo. (Non-watermark variants only) $logo-mobile-height: 35px !default; /// Height of the logo in phone layout. (Defaults to 24px for watermark variant) $logo-phone-height: null !default; /// File extension of logo_header and logo_header_invert image files $logo-image-file-extension: "png" !default; @import "./logo/variant/background_image"; @import "./logo/variant/watermark"; @if $logo-variant == "watermark" { $logo-phone-height: 24px !default; @include logo-variant-watermark( $top: $logo-top, $width: $logo-width, $height: $logo-height, $phone-height: $logo-phone-height ); } @else { @include logo-variant-background-image( $first-page-only: ($logo-variant == "first-page"), $top: $logo-top, $min-width: $logo-min-width, $max-width: $logo-max-width, $width: $logo-relative-width, $height: $logo-height, $mobile-height: $logo-mobile-height, $phone-height: $logo-phone-height, $phone-top: $logo-phone-top ); }
Version data entries
74 entries across 74 versions & 1 rubygems