mirror of
https://github.com/audacity/audacity.github.io.git
synced 2026-04-12 06:25:33 -05:00
[PR #23] [MERGED] Install and configure postcss-nesting #55
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/audacity/audacity.github.io/pull/23
Author: @DilsonsPickles
Created: 2/5/2024
Status: ✅ Merged
Merged: 2/6/2024
Merged by: @LWinterberg
Base:
main← Head:css-nesting📝 Commits (1)
334e653Install and configure postcss-nesting📊 Changes
3 files changed (+63 additions, -5 deletions)
View changed files
📝
package-lock.json(+53 -4)📝
package.json(+2 -1)➕
postcss.config.cjs(+8 -0)📄 Description
Correctly configured postcss-nesting to remove Nested CSS detected error as shown below. This was caused by the cookie consent banner that required nested styling when the "hide" class was added to it once Visitors accept or reject site cookies.
For more info visit https://docs.astro.build/en/guides/styling/#postcss
[vite:css] Nested CSS was detected, but CSS nesting has not been configured correctly. Please enable a CSS nesting plugin *before* Tailwind in your configuration. See how here: https://tailwindcss.com/docs/using-with-preprocessors#nesting 108| transition: bottom .5s ease; 109| 110| &.hide{ | ^ 111| bottom:-412px; 112| } [vite:css] Nested CSS was detected, but CSS nesting has not been configured correctly. Please enable a CSS nesting plugin *before* Tailwind in your configuration. See how here: https://tailwindcss.com/docs/using-with-preprocessors#nesting 1 | @tailwind base; | ^ 2 | @tailwind components; 3 | @tailwind utilities; 11:10:11 AM [serve] 404 /output.css [vite:css] Nested CSS was detected, but CSS nesting has not been configured correctly. Please enable a CSS nesting plugin *before* Tailwind in your configuration. See how here: https://tailwindcss.com/docs/using-with-preprocessors#nesting 108| transition: bottom .5s ease; 109| 110| &.hide{ | ^ 111| bottom:-412px; 112| } [vite:css] Nested CSS was detected, but CSS nesting has not been configured correctly. Please enable a CSS nesting plugin *before* Tailwind in your configuration. See how here: https://tailwindcss.com/docs/using-with-preprocessors#nesting 1 | @tailwind base; | ^ 2 | @tailwind components; 3 | @tailwind utilities;🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.