Skip to content

Commit

Permalink
Merge pull request #198 from picocss/dev
Browse files Browse the repository at this point in the history
v1.5.2
  • Loading branch information
lucaslarroche authored May 24, 2022
2 parents 161dfa8 + 3233e7d commit e88e135
Show file tree
Hide file tree
Showing 22 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion css/pico.classless.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/pico.classless.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/pico.classless.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/pico.classless.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/pico.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/pico.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/pico.fluid.classless.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/pico.fluid.classless.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/pico.fluid.classless.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/pico.fluid.classless.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/pico.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/pico.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/pico.slim.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/pico.slim.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/pico.slim.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion css/pico.slim.min.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/js/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let visibleModal = null;
// Toggle modal
const toggleModal = event => {
event.preventDefault();
const modal = document.getElementById(event.target.getAttribute('data-target'));
const modal = document.getElementById(event.currentTarget.getAttribute('data-target'));
(typeof(modal) != 'undefined' && modal != null)
&& isModalOpen(modal) ? closeModal(modal) : openModal(modal)
}
Expand Down Expand Up @@ -92,4 +92,4 @@ const getScrollbarWidth = () => {
// Is scrollbar visible
const isScrollbarVisible = () => {
return document.body.scrollHeight > screen.height;
}
}
2 changes: 1 addition & 1 deletion docs/js/modal.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@picocss/pico",
"version": "1.5.1",
"version": "1.5.2",
"description": "Minimal CSS Framework for semantic HTML",
"author": "Lucas Larroche",
"main": "css/pico.min.css",
Expand Down
2 changes: 1 addition & 1 deletion scss/pico.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Pico.css v1.5.1 (https://picocss.com)
* Pico.css v1.5.2 (https://picocss.com)
* Copyright 2019-2022 - Licensed under MIT
*/

Expand Down
2 changes: 1 addition & 1 deletion scss/pico.slim.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Pico.css v1.5.1 (https://picocss.com)
* Pico.css v1.5.2 (https://picocss.com)
* Copyright 2019-2022 - Licensed under MIT
*
* Slim version example
Expand Down

0 comments on commit e88e135

Please sign in to comment.