Home > Software design >  How to add background color to TailWindUI Dark Nav with White Page Header in Vue 3
How to add background color to TailWindUI Dark Nav with White Page Header in Vue 3

Time:04-25

I am attempting to modify the Dark Nav with White Page Header template in TailwindUI/Vue (enter image description here

CodePudding user response:

I think it's working as it should because min-h-full means to take the full height which is specified in the content section as h-96 if you want to get rid of the white space give the top-level div this class min-h-screen bg-amber-300

https://play.tailwindcss.com/fGw3zeIf4n

  • Related