webmasterpf

Results 23 comments of webmasterpf

you are talking about the `css/src/tailwind.css` file ? As it's related to tailwind, I don't know if I can to change it to scss file.

So nobody use tailwind + sass + webpack encore ? :/ The only info source I found is: https://www.yourigalescot.com/fr/blog/comment-integrer-tailwindcss-v3-a-un-projet-symfony-avec-webpack-encore

Agree. But technically, does exist example or explanation about what to do this ? I never use webpack encore or tailwind before 3 month ago... :D

ok, so I need to rewrite my scss files, then I will look if sccs and tailwind are compiled right or not, as this test say : ``` error in...

First test with this loop: ``` $typedecontenu: type-page-lycee, type-annonce-accueil, type-contenu-info-admin, type-page-erreur ; $zones: zone-1, zone-2, zone-3, zone-4 ; @each $zone in $zones { @each $type in $typedecontenu { ##{$zone}.#{$type} {...

Hello, The result would be : `#zone-1.type-page-lycee .entrefilet, #zone-1.type-page-erreur .entrefilet` , that's the compilation error I point, and it's the goal of the loop.

Another example with: ``` [id$='-content'], [class$='search-results'] { @apply lg:col-span-10 lg:col-start-1 lg:clear-both; nav.pager { @apply clear-both ; ``` which result is: ``` @media (min-width: 1024px){ body.page-search-node [id$=-content], body.page-search-node [class$=search-results]{ grid-column: span...

Feedback. my mixin file is compiled with no warning by webpack but...the compiled code miss the mixins as it create this: ``` /*¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤ ----- MIXINS DE STYLES PROVENCE FORMATION -----...

Files are still in the same place: https://github.com/symfony/webpack-encore/issues/1214#issuecomment-1614318956 I don't use CSS files anymore. As my previous code was in sass, I try compile it with Webpack encore instead of...

I understand. What a reproducer do contain so ? To test my mixin I done it by uncomment the line 137 , into `/style/scss/src/content-type/_contenu-entreprise.scss` and I get the error mentionned...