No styling for options.tsx

I have a basic options page written in TypeScript and styled via Tailwind CSS that displays perfectly within the popup.

I saved all of the code to an OptionsPage.tsx, verified it displays fine, then used it in options.tsx:
import React from 'react'
import OptionsPage from '~pages/OptionsPage'

const options = () => {
  return (
    <OptionsPage />
  )
}

export default options


For some reason, the styling just does not display on that page.
Was this page helpful?