Skip to content

Commit f25840f

Browse files
committed
- Updated form validation to not validate when form[novalidate]
- Updated tooltips to go multiline, max width of 250px. -Updated card footer, to remove the margin from the last element if they are buttons or groups when in the footer - Made container, grid, and row classes to have a parent class, so they will not effect rest of page. This will only work if you use that style css. - Added tabs - Added floating labels - Added responsive nav hamburger menu Let me know if you find any bugs or have ideas for improvements!
1 parent a937be4 commit f25840f

File tree

260 files changed

+71093
-11325
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+71093
-11325
lines changed

README.md

+5-19
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
1-
# Next release notes:
2-
3-
Planning to release 12/10/2024 (within the next couple hours)
4-
5-
## Issues to address:
6-
- I've found with the validation (completed)
7-
8-
## New Components
9-
- floating labels (completed)
10-
- tabs (completed)
11-
- mobile friendly 'nav'
12-
13-
---
14-
151
<p>
162
<a href="https://picocss.com" target="_blank">
173
<picture>
@@ -25,7 +11,7 @@ Planning to release 12/10/2024 (within the next couple hours)
2511
[![Github release](https://img.shields.io/github/v/release/Yohn/PicoCSS?color=0172ad&logo=github&logoColor=white)](https://github.com/Yohn/PicoCSS/releases/latest)
2612
[![npm version](https://img.shields.io/npm/v/@yohns/picocss?color=0172ad)](https://www.npmjs.com/package/@yohns/picocss)
2713
[![License](https://img.shields.io/badge/license-MIT-%230172ad)](https://github.com/Yohn/PicoCSS/blob/master/LICENSE.md)
28-
[![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/picocss.svg?style=social&label=Follow%20%40picocss)](https://twitter.com/picocss)
14+
<!-- [![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/picocss.svg?style=social&label=Follow%20%40picocss)](https://twitter.com/picocss) -->
2915

3016
## Yohns Updated Version
3117
I'm not sure if the original [Pico CSS](https://github.com/picocss/pico) repository is abandoned or not, but I really liked what they had to offer, and wanted to help not let this awesomely simple and easy to use front end framework disappear, so I merged as many of open pull requests that fixed some issues, and / or enhanced the project that were available at the time. I'll try to help keep it viable and do some bug fixes if any arise, and would alway appreciate anyone elses help to continue keeping this alive!
@@ -91,7 +77,7 @@ There are 4 ways to get started with pico.css:
9177
Alternatively, you can use [jsDelivr CDN](https://www.jsdelivr.com/package/npm/@yohns/picocss) to link pico.css.
9278

9379
```html
94-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@yohns/picocss@2.1.3/css/pico.min.css" />
80+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@yohns/picocss@2.2.0/css/pico.min.css" />
9581
```
9682

9783
### Install with NPM
@@ -149,7 +135,7 @@ Use the default `.classless` version if you need centered viewports:
149135
```html
150136
<link
151137
rel="stylesheet"
152-
href="https://cdn.jsdelivr.net/npm/@yohns/picocss@2.1.3/css/pico.classless.min.css"
138+
href="https://cdn.jsdelivr.net/npm/@yohns/picocss@2.2.0/css/pico.classless.min.css"
153139
/>
154140
```
155141

@@ -158,7 +144,7 @@ Or use the `.fluid.classless` version if you need a fluid container:
158144
```html
159145
<link
160146
rel="stylesheet"
161-
href="https://cdn.jsdelivr.net/npm/@yohns/picocss@2.1.3/css/pico.fluid.classless.min.css"
147+
href="https://cdn.jsdelivr.net/npm/@yohns/picocss@2.2.0/css/pico.fluid.classless.min.css"
162148
/>
163149
```
164150

@@ -173,7 +159,7 @@ Then just write pure HTML, and it should look great:
173159
<meta name="color-scheme" content="light dark" />
174160
<link
175161
rel="stylesheet"
176-
href="https://cdn.jsdelivr.net/npm/@yohns/picocss@2.1.3/css/pico.classless.min.css"
162+
href="https://cdn.jsdelivr.net/npm/@yohns/picocss@2.2.0/css/pico.classless.min.css"
177163
/>
178164
<title>Hello, world!</title>
179165
</head>

composer.json

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "picocss/pico",
2+
"name": "yohn/picocss",
33
"description": "Minimal CSS Framework for semantic HTML.",
44
"keywords": [
55
"css",
@@ -14,17 +14,22 @@
1414
"scss-framework",
1515
"semantic"
1616
],
17-
"homepage": "https://picocss.com",
17+
"homepage": "https://github.com/Yohn/PicoCSS",
1818
"authors": [
1919
{
2020
"name": "Lucas Larroche",
2121
"email": "lucas@larroche.com",
2222
"homepage": "https://lucaslarroche.com",
2323
"role": "Developer"
24+
},
25+
{
26+
"name": "John Brittain III",
27+
"homepage": "https://github.com/Yohn/PicoCSS",
28+
"role": "Developer"
2429
}
2530
],
2631
"support": {
27-
"issues": "https://github.com/picocss/pico/issues/"
32+
"issues": "https://github.com/Yohn/PicoCSS/issues/"
2833
},
2934
"license": "MIT"
30-
}
35+
}

0 commit comments

Comments
 (0)