Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
163 B

4 years ago
  1. import $ from 'cash-dom';
  2. $(function() {
  3. const $nav = $('#nav');
  4. $('#nav-button').on('click', function() {
  5. $nav.toggleClass('show');
  6. });
  7. });