Replace bootstrap with Bulma

This commit is contained in:
Oliver Davies 2017-08-06 19:01:22 +01:00
parent 4e851429d8
commit fbec98acaf
20 changed files with 126 additions and 138 deletions

View file

@ -1,4 +1,9 @@
(function ($) {
// Update the HTML classes.
$('html.no-js').removeClass('no-js').addClass('js');
$('html.no-js').addClass('js').removeClass('no-js');
$('.nav-toggle').on('click', function (e) {
e.preventDefault();
$(this).siblings('.nav-right').toggleClass('is-active');
})
})(jQuery);