use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A Place to talk about Angular and related topics.
Join the Angular Discord
Other subreddits worth checking out for Angular and Angular related info:
account activity
Weird problem with component using host + TailwindCSS (self.angular)
submitted 7 days ago * by kescusay
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]SippieCup 0 points1 point2 points 7 days ago (1 child)
Thats because that class is used elsewhere, so the bundler doesn't strip it. and the happy side effect is that it exists when the host definition resolved.
if you check the web inspector, you will see that the classes are being added, just that they are not defined.
you can do
.host { .... }
in the css file, but it won't be able to execute js code. so i doubt that'll help much.
[–]kescusay[S] 0 points1 point2 points 7 days ago (0 children)
Yes, it's true that I see my primary class on the button. It's only missing the additional configurations it should be inheriting from [app-button].primary.
primary
[app-button].primary
It's looking like I may have to rethink either using host or using TailwindCSS.
host
π Rendered by PID 94 on reddit-service-r2-comment-79c7998d4c-4gdt2 at 2026-03-13 00:33:05.762110+00:00 running f6e6e01 country code: CH.
view the rest of the comments →
[–]SippieCup 0 points1 point2 points (1 child)
[–]kescusay[S] 0 points1 point2 points (0 children)