small update

This commit is contained in:
Timothy Pidashev
2024-05-02 09:50:08 -07:00
parent afa9013ff0
commit 1a72c07e82
9 changed files with 14 additions and 25 deletions

View File

@@ -4,20 +4,9 @@ import Sidebar from "@/components/header/sidebar";
function Header() { function Header() {
return ( return (
<Container> <header className="hidden md:flex lg:text-4xl md:text-10xl">
<header className="
hidden md:flex
lg:text-4xl md:text-3xl
">
<DefaultHeader /> <DefaultHeader />
</header> </header>
<header className="
flex md:hidden
lg:text-4xl md:text-3xl
">
<Sidebar />
</header>
</Container>
); );
} }

View File

@@ -2,7 +2,7 @@ import React from "react";
const Container = ({ children }) => { const Container = ({ children }) => {
return ( return (
<div className="mx-auto w-full max-w-10xl"> <div className="mx-auto w-full max-w-3xl">
{children} {children}
</div> </div>
); );

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 304 KiB

After

Width:  |  Height:  |  Size: 304 KiB

View File

Before

Width:  |  Height:  |  Size: 629 B

After

Width:  |  Height:  |  Size: 629 B

View File

@@ -8,39 +8,39 @@ module.exports = {
extend: { extend: {
colors: { colors: {
light:{ light:{
background: "#fbf1c7", background: "#282828",
foreground: "#3c3836", foreground: "#ebdbb2",
red: { red: {
1: "#cc241d", 1: "#cc241d",
2: "#9d0006" 2: "#fb4934"
}, },
orange: { orange: {
1: "#d65d0e", 1: "#d65d0e",
2: "#af3a03" 2: "#fe8019"
}, },
green: { green: {
1: "#98971a", 1: "#98971a",
2: "#79740e" 2: "#b8bb26"
}, },
yellow: { yellow: {
1: "#d79921", 1: "#d79921",
2: "#b57614" 2: "#fabd2f"
}, },
blue: { blue: {
1: "#458588", 1: "#458588",
2: "#076678" 2: "#83a598"
}, },
purple: { purple: {
1: "#b16286", 1: "#b16286",
2: "#8f3f71" 2: "#d3869b"
}, },
aqua: { aqua: {
1: "#689d6a", 1: "#689d6a",
2: "#427b58" 2: "#8ec07c"
}, },
}, },
dark: { dark: {
background: "#282828", background: "#000000",
foreground: "#ebdbb2", foreground: "#ebdbb2",
red: { red: {
1: "#cc241d", 1: "#cc241d",