Skip to content

Commit

Permalink
Merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
robdekort committed Sep 29, 2023
1 parent a4ad52f commit db4d839
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 58 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v15.9.0 (2023-09-29)

### What's improved
- Prevent Tailwind compilation bug by using attribute selectors in the Peak outer grid config. b0bfccbe by @robdekort

## v15.8.0 (2023-09-26)

### What's changed
Expand Down
100 changes: 50 additions & 50 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"focus-visible": "^5.2.0"
},
"devDependencies": {
"@csstools/postcss-oklab-function": "^3.0.3",
"@csstools/postcss-oklab-function": "^3.0.5",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "10.4.15",
"autoprefixer": "10.4.16",
"glob-all": "^3.3.1",
"laravel-vite-plugin": "^0.8.0",
"postcss": "^8.4.29",
"laravel-vite-plugin": "^0.8.1",
"postcss": "^8.4.31",
"postcss-focus-visible": "^9.0.0",
"postcss-import": "^15.1.0",
"resolve-url-loader": "^5.0.0",
Expand Down
1 change: 1 addition & 0 deletions public/build/assets/site-67b47cae.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/build/assets/site-ca940ca4.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/build/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"resources/css/site.css": {
"file": "assets/site-352d69d2.css",
"file": "assets/site-ca940ca4.css",
"isEntry": true,
"src": "resources/css/site.css"
},
Expand Down
6 changes: 3 additions & 3 deletions tailwind.config.peak.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ module.exports = {
// If the last child of the outer grid is full width (e.g. when it has a full width
// colored background), give it negative margin bottom to get it flush to your
// sites footer.
'& > *:last-child.w-full': {
'&>*:last-child:is([class~="w-full"])': {
marginBottom: `-${theme('spacing.12')}`,
},
},
Expand All @@ -157,7 +157,7 @@ module.exports = {
rowGap: theme('spacing.16'),
paddingTop: theme('spacing.16'),
paddingBottom: theme('spacing.16'),
'& > *:last-child.w-full': {
'&>*:last-child:is([class~="w-full"])': {
marginBottom: `-${theme('spacing.16')}`,
},
},
Expand All @@ -174,7 +174,7 @@ module.exports = {
rowGap: theme('spacing.24'),
paddingTop: theme('spacing.24'),
paddingBottom: theme('spacing.24'),
'& > *:last-child.w-full': {
'&>*:last-child:is([class~="w-full"])': {
marginBottom: `-${theme('spacing.24')}`,
},
},
Expand Down

0 comments on commit db4d839

Please sign in to comment.