mirror of
https://github.com/picocss/pico.git
synced 2025-04-20 08:45:06 -04:00
Merge 6f71f1cb0c
into 319e48ba91
This commit is contained in:
commit
ec11d0e05a
10 changed files with 39 additions and 9 deletions
30
.github/workflows/build.yml
vendored
Normal file
30
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
name: build
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: yarn
|
||||
- run: yarn install --frozen-lockfile
|
||||
- run: yarn build
|
||||
- uses: tj-actions/verify-changed-files@v16
|
||||
id: changed-files
|
||||
with:
|
||||
fail-if-changed: true
|
||||
- name: List changed files
|
||||
if: always()
|
||||
env:
|
||||
FILES_CHANGED: |-
|
||||
${{ steps.changed-files.outputs.changed_files }}
|
||||
run: |
|
||||
echo "Files changed:"
|
||||
for file in ${FILES_CHANGED}
|
||||
do
|
||||
echo "- ${file}"
|
||||
done
|
|
@ -1539,7 +1539,7 @@ label:has([type=checkbox], [type=radio]) {
|
|||
}
|
||||
[type=checkbox][role=switch]:before {
|
||||
display: block;
|
||||
width: calc(1.25em - (var(--pico-border-width) * 2));
|
||||
width: calc(1.25em - var(--pico-border-width) * 2);
|
||||
height: 100%;
|
||||
border-radius: 50%;
|
||||
background-color: var(--pico-color);
|
||||
|
|
File diff suppressed because one or more lines are too long
2
css/pico.classless.min.css
vendored
2
css/pico.classless.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -1691,7 +1691,7 @@ label:has([type=checkbox], [type=radio]) {
|
|||
}
|
||||
[type=checkbox][role=switch]:before {
|
||||
display: block;
|
||||
width: calc(1.25em - (var(--pico-border-width) * 2));
|
||||
width: calc(1.25em - var(--pico-border-width) * 2);
|
||||
height: 100%;
|
||||
border-radius: 50%;
|
||||
background-color: var(--pico-color);
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1502,7 +1502,7 @@ label:has([type=checkbox], [type=radio]) {
|
|||
}
|
||||
[type=checkbox][role=switch]:before {
|
||||
display: block;
|
||||
width: calc(1.25em - (var(--pico-border-width) * 2));
|
||||
width: calc(1.25em - var(--pico-border-width) * 2);
|
||||
height: 100%;
|
||||
border-radius: 50%;
|
||||
background-color: var(--pico-color);
|
||||
|
|
File diff suppressed because one or more lines are too long
2
css/pico.fluid.classless.min.css
vendored
2
css/pico.fluid.classless.min.css
vendored
File diff suppressed because one or more lines are too long
2
css/pico.min.css
vendored
2
css/pico.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue