mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-07-05 12:01:30 +00:00
12 lines
343 B
JavaScript
12 lines
343 B
JavaScript
jQuery(function($){
|
|
$('.sow-cta-base').each(function(){
|
|
var $$ = $(this);
|
|
var
|
|
$b = $$.find('.so-widget-sow-button'),
|
|
$t = $$.find('.sow-cta-text');
|
|
|
|
if($t.outerHeight() > $b.outerHeight()) {
|
|
$b.css('margin-top', ( $t.outerHeight() - $b.outerHeight() )/2 );
|
|
}
|
|
});
|
|
}); |