The issue
Pretty simply, I'm running in dark mode, and the dark mode colors for the background aren't passing through to the Confirm Email Page. This is resulting in white text, on a white button, on a white background.
I've tried changing every CSS tag I can see, but all of them seem to be overridden by later style loads (from extensions, or other parts of the app, or styles built into the page?), so none of them affect anything on the page.
Any hints or tips for things I could do? I'm not concerned about getting the full color scheme on the page, but I don't want people to link to what appears to be a blank page. Thanks for your help!! =)
Flarum information
Here's the CSS from Inspector, none of which I've been able to affect.
.form .button {
display: block;
width: 100%;
}
.button {
display: inline-block;
padding: 15px 25px;
background: #ffffff;
color: #fff;
text-decoration: none;
text-align: center;
vertical-align: middle;
border-radius: 4px;
cursor: pointer;
white-space: nowrap;
font-weight: bold;
border: 0;
}
input, button, select, textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
* {
box-sizing: border-box;
}