Skip to content

Commit

Permalink
fix: added included files to tailwind config
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeldelPilar committed Oct 19, 2024
1 parent 4f20d1b commit b21bc9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/control/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ type LayoutProps = {
export default function ControlLayout({ children }: LayoutProps) {
return (
<div className="flex flex-col h-screen overflow-hidden">
<main className="flex flex-col flex-1 overflow-y-scroll bg-background shadow-inner p-4 lg:p-12 xl:p20">
<main className="flex flex-col flex-1 overflow-y-scroll bg-background shadow-inner p-4 lg:p-12 xl:p-20">
<header className="flex flex-col items-center">
<h1 className="text-xl">Eyevinn Live Encoding</h1>
<h1 className="text-4xl">Eyevinn Live Encoding</h1>
<p>Open Source Live Encoder based on ffmpeg</p>
</header>
{children}
Expand Down
5 changes: 4 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ import { nextui } from '@nextui-org/react';
import type { Config } from 'tailwindcss';

const config: Config = {
content: ['./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}'],
content: [
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
'./src/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
almostBlack: '#171717',
Expand Down

0 comments on commit b21bc9f

Please sign in to comment.