mirror of
https://github.com/picocss/pico.git
synced 2025-04-20 16:46:14 -04:00
JS: Fix generated code for .grid
This commit is contained in:
parent
bcf6d7c779
commit
b90ffcd3e5
3 changed files with 4 additions and 3 deletions
|
@ -53,6 +53,7 @@ Elegant styles for all natives HTML elements without `.classes` and dark mode au
|
||||||
- [Tooltips](https://picocss.com/docs/#tooltips)
|
- [Tooltips](https://picocss.com/docs/#tooltips)
|
||||||
|
|
||||||
## Copyright and license
|
## Copyright and license
|
||||||
|
|
||||||
- Licensed under the [MIT License](https://github.com/picocss/pico/blob/master/LICENSE.md)
|
- Licensed under the [MIT License](https://github.com/picocss/pico/blob/master/LICENSE.md)
|
||||||
- Openly inspired by [Bootstrap](https://github.com/twbs/bootstrap) ([MIT](https://github.com/twbs/bootstrap/blob/master/LICENSE)), [Spectre](https://github.com/picturepan2/spectre) ([MIT](https://github.com/picturepan2/spectre/blob/master/LICENSE)), [Wing](https://github.com/kbrsh/wing/) ([MIT](https://github.com/kbrsh/wing/blob/master/LICENSE)), [CSS Bed](https://github.com/ubershmekel/cssbed) & [Normalize](https://github.com/necolas/normalize.css/) ([MIT](https://github.com/necolas/normalize.css/blob/master/LICENSE.md))
|
- Openly inspired by [Bootstrap](https://github.com/twbs/bootstrap) ([MIT](https://github.com/twbs/bootstrap/blob/master/LICENSE)), [Spectre](https://github.com/picturepan2/spectre) ([MIT](https://github.com/picturepan2/spectre/blob/master/LICENSE)), [Wing](https://github.com/kbrsh/wing/) ([MIT](https://github.com/kbrsh/wing/blob/master/LICENSE)), [CSS Bed](https://github.com/ubershmekel/cssbed) & [Normalize](https://github.com/necolas/normalize.css/) ([MIT](https://github.com/necolas/normalize.css/blob/master/LICENSE.md))
|
||||||
- Library icons by [Feather](https://github.com/feathericons/feather) ([MIT](https://github.com/feathericons/feather/blob/master/LICENSE))
|
- Library icons by [Feather](https://github.com/feathericons/feather) ([MIT](https://github.com/feathericons/feather/blob/master/LICENSE))
|
||||||
|
|
2
docs/js/pico.docs.min.js
vendored
2
docs/js/pico.docs.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -116,8 +116,8 @@
|
||||||
|
|
||||||
var colsHTML = '';
|
var colsHTML = '';
|
||||||
var colsCode = '';
|
var colsCode = '';
|
||||||
var colsCodePref = '<<b>section</b> <i>class</i>=<u>"grid"</u>>\n';
|
var colsCodePref = '<<b>div</b> <i>class</i>=<u>"grid"</u>>\n';
|
||||||
var colsCodeSuff = '</<b>section</b>>';
|
var colsCodeSuff = '</<b>div</b>>';
|
||||||
|
|
||||||
for (var i=0; i<cols; i++) {
|
for (var i=0; i<cols; i++) {
|
||||||
colsHTML += '<div>' + (i+1) + '</div>';
|
colsHTML += '<div>' + (i+1) + '</div>';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue