As I navigate through using Quasar in Vue, I stumbled upon a q-popup-edit that allows me to gather input from the user. Despite my attempts at researching via Google and reading documentation, I have hit a roadblock when it comes to customizing the style of a q-popup-edit object. While we do have access to content-style for the popup when it's open, I find myself limited to only being able to set the height and width on the object itself. Is there a method to adjust colors, font size, or other similar attributes?
Below is my current code snippet in case it aids in understanding:
<q-popup-edit v-model="newName" auto-save v-slot="scope" style="font-min-size: large">
<q-input v-model="newName" dense autofocus counter @keyup.enter="saveName" />
</q-popup-edit>