Skip to content
Discussion options

You must be logged in to vote

Thanks for your suggestions @dvoituron I have just solved this issue.

The tailwind css I have implemented uses tw- prefix and does not interfere with blazor fluentui CSS in any way, so min-h-[16px] becomes tw-min-h-[16px] or bg-[#ff0000] becomes tw-bg-[#ff0000], for example. I have both working really well together, and I don't need to disable CSS checking.

I have just solved the problem I described above.

My css was missing the following line, in the .body-content section: height: calc(100dvh - 86px) !important;

My body-content css now looks like this:

.body-content {
    align-self: stretch;
    height: calc(100dvh - 86px) !important;
    display: flex;
}

Here is a screenshot of it wor…

Replies: 6 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by coderdnewbie
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants