This commit is contained in:
Asbjørn Ulsberg 2023-12-28 14:36:04 +00:00 committed by GitHub
commit ec11d0e05a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 39 additions and 9 deletions

30
.github/workflows/build.yml vendored Normal file
View 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

View file

@ -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

File diff suppressed because one or more lines are too long

View file

@ -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

View file

@ -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

File diff suppressed because one or more lines are too long

2
css/pico.min.css vendored

File diff suppressed because one or more lines are too long