houdini/app/javascript/legacy/nonprofits/btn/page.js
2020-04-23 14:09:14 -05:00

19 lines
523 B
JavaScript

// License: LGPL-3.0-or-later
var Font = require('../../common/brand-fonts'),
utils = require('../../common/utilities'),
$brandedButton = $('.branded-donate-button')
if(utils.get_param('fixed')){
$brandedButton.addClass('is-fixed')
$('.centered').css('padding-top', '5px')
}
var $logoBlue = '#42B3DF',
brandColor = app.nonprofit.brand_color || $logoBlue,
brandFont = Font[app.nonprofit.brand_font] || Font.bitter
$brandedButton.css({
'background-color': brandColor,
'font-family': brandFont
}
)