-
Notifications
You must be signed in to change notification settings - Fork 185
Description
Hi all,
This one has stumped both myself and (more importantly) those with far more experience and knowledge of the Rails framework and CSS engines alike. I've attached a brief 2.5 minute video below demonstrating the issue. In effect, I can change each class on an element one time, but if I try to change two or more times, I must manually rebuild the CSS.
For example, I can change a class to text-4xl
from its current state of text-2xl
, and it will work. But if I go to then change it to text-sm
or anything other than text-2xl
or text-4xl
, it will effectively remove the entire class and will default to black. Same with mt
classes. A perfect example is changing the default mt-28
property in application.html.erb
. If I set it to, say, mt-10
, that and mt-28
are the only two classes that will apply. If I tried to set any other mt
level, it would fail and effectively be mt-0
.
I'm currently running WSL2 Ubuntu 20.04, Rails v7.0.3, Ruby v3.1.2 -- all stable releases. I use importmaps, so no package.json to speak of. I'm now a novice+ programmer, but know my way around a troubleshoot as I was tuned-in about a decade ago. I'm open to trying any and everything in order to solve this and document the solution -- it's the first thing I've seen stump everyone in the GoRails community's CSS channel.
Thanks in advance, everyone!
RM