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() {
return (
<Container>
<header className="
hidden md:flex
lg:text-4xl md:text-3xl
">
<DefaultHeader />
</header>
<header className="
flex md:hidden
lg:text-4xl md:text-3xl
">
<Sidebar />
</header>
</Container>
<header className="hidden md:flex lg:text-4xl md:text-10xl">
<DefaultHeader />
</header>
);
}

View File

@@ -2,7 +2,7 @@ import React from "react";
const Container = ({ children }) => {
return (
<div className="mx-auto w-full max-w-10xl">
<div className="mx-auto w-full max-w-3xl">
{children}
</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: {
colors: {
light:{
background: "#fbf1c7",
foreground: "#3c3836",
background: "#282828",
foreground: "#ebdbb2",
red: {
1: "#cc241d",
2: "#9d0006"
2: "#fb4934"
},
orange: {
1: "#d65d0e",
2: "#af3a03"
2: "#fe8019"
},
green: {
1: "#98971a",
2: "#79740e"
2: "#b8bb26"
},
yellow: {
1: "#d79921",
2: "#b57614"
2: "#fabd2f"
},
blue: {
1: "#458588",
2: "#076678"
2: "#83a598"
},
purple: {
1: "#b16286",
2: "#8f3f71"
2: "#d3869b"
},
aqua: {
1: "#689d6a",
2: "#427b58"
2: "#8ec07c"
},
},
dark: {
background: "#282828",
background: "#000000",
foreground: "#ebdbb2",
red: {
1: "#cc241d",