mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 11:03:50 +00:00
small update
This commit is contained in:
@@ -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>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
);
|
);
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 304 KiB After Width: | Height: | Size: 304 KiB |
|
Before Width: | Height: | Size: 629 B After Width: | Height: | Size: 629 B |
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user