diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-06-02 17:18:08 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-06-02 17:18:08 -0700 |
| commit | a4e823682c16efc0fcdf8fb07ce32bfbb045cd84 (patch) | |
| tree | 943c001e951be8c727ce4ea75e4e08a97d668974 /src/components/Header/index.styled.ts | |
| parent | afbe1434a478cc00f4f84c03f0886edd7806d4e3 (diff) | |
fork and restyle, init scaffold for changes
Diffstat (limited to 'src/components/Header/index.styled.ts')
| -rw-r--r-- | src/components/Header/index.styled.ts | 46 |
1 files changed, 18 insertions, 28 deletions
diff --git a/src/components/Header/index.styled.ts b/src/components/Header/index.styled.ts index c66cd26..af38065 100644 --- a/src/components/Header/index.styled.ts +++ b/src/components/Header/index.styled.ts @@ -1,49 +1,39 @@ import styled from "styled-components"; export const Container = styled.header` - display: flex; - align-items: center; - justify-content: center; - width: 100%; - - border-color: ${({ theme }) => theme.border}; - border-bottom-width: 0.5px; - border-bottom-style: solid; - - margin-bottom: 15px; + border-bottom: 1px solid ${({ theme }) => theme.border}; + padding-bottom: 16px; + margin-bottom: 32px; `; export const Content = styled.div` display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; - justify-content: space-between; - - width: 40%; + max-width: 680px; + margin: 0 auto; - @media (max-width: 768px) { - width: 95%; + svg { + color: var(--cl-gray-6); + &:hover { + cursor: pointer; + color: var(--cl-white); + } } - max-width: 650px; - - svg:hover { - cursor: pointer; - opacity: 0.8; - } - - a { - color: ${({ theme }) => theme.text}; - } + a { color: ${({ theme }) => theme.text}; } `; export const Logo = styled.h1` - color: ${({ theme }) => theme.text}; - font-family: "Roboto Serif", serif; + font-family: "Roboto Mono", monospace; + font-size: 1rem; + font-weight: 700; + letter-spacing: 0.3em; text-transform: uppercase; text-align: center; + color: var(--cl-green-6); + margin: 0; - -webkit-touch-callout: none; user-select: none; `; |
