diff --git a/frontend/src/components/layout/RightColumn/RightColumn.scss b/frontend/src/components/layout/RightColumn/RightColumn.scss deleted file mode 100644 index bd5bdaf..0000000 --- a/frontend/src/components/layout/RightColumn/RightColumn.scss +++ /dev/null @@ -1,11 +0,0 @@ -@use '../../../tailwind-values.scss' as tailwind; - -.right-column-wrapper { - height: calc(100vh - 20px); -} - -@media (max-width: tailwind.$xl-breakpoint) { - .right-column-wrapper { - height: calc(100vh - 3.9rem); - } -} diff --git a/frontend/src/components/layout/RightColumn/RightColumn.tsx b/frontend/src/components/layout/RightColumn/RightColumn.tsx index 23b8b1a..9acbe9a 100644 --- a/frontend/src/components/layout/RightColumn/RightColumn.tsx +++ b/frontend/src/components/layout/RightColumn/RightColumn.tsx @@ -1,7 +1,6 @@ -import { component$, useStylesScoped$ } from '@builder.io/qwik' +import { component$ } from '@builder.io/qwik' import { Link, useLocation } from '@builder.io/qwik-city' import { WildebeestLogo } from '~/components/MastodonLogo' -import styles from './RightColumn.scss?inline' type LinkConfig = { iconName: string @@ -11,7 +10,6 @@ type LinkConfig = { } export default component$(() => { - useStylesScoped$(styles) const location = useLocation() const renderNavLink = ({ iconName, linkText, linkTarget, linkActiveRegex }: LinkConfig) => { @@ -40,8 +38,8 @@ export default component$(() => { const aboutLink = { iconName: 'fa-ellipsis', linkText: 'About', linkTarget: '/about', linkActiveRegex: /^\/about/ } return ( -