Sha256: 57d8c072647f83c1eef2167388068168e702ddd360fee9db137ca650ae37c36c
Contents?: true
Size: 721 Bytes
Versions: 173
Compression:
Stored size: 721 Bytes
Contents
//// /// @group tools/assets //// /// Font URL /// /// If a custom font-url handler is defined ($govuk-font-url-function) then /// it will be called, otherwise a url will be returned with the filename /// appended to the font path. /// /// @param {String} $filename - Font filename /// @return {String} URL for the filename, wrapped in `url()` /// @access public @function govuk-font-url($filename) { $use-custom-function: variable-exists("govuk-font-url-function") and $govuk-font-url-function and function-exists($govuk-font-url-function); @if ($use-custom-function) { @return call(get-function($govuk-font-url-function), $filename); } @else { @return url($govuk-fonts-path + $filename); } }
Version data entries
173 entries across 170 versions & 4 rubygems