diff --git a/src/components/Header.tsx b/src/components/Header.tsx
index 6438dd4..b1923b0 100644
--- a/src/components/Header.tsx
+++ b/src/components/Header.tsx
@@ -1,24 +1,35 @@
import "@styles/Header.scss";
import ThemeSwitch from "@components/ThemeSwitch";
+function Logo() {
+ return (
+
+ );
+}
+
+function Control() {
+ return (
+
+ );
+}
+
export default function Header() {
return (
);
}
diff --git a/src/styles/Header.scss b/src/styles/Header.scss
index 17fc00e..9d9ddc3 100644
--- a/src/styles/Header.scss
+++ b/src/styles/Header.scss
@@ -8,6 +8,16 @@
.logo {
flex: 0.5;
+
+ p {
+ font-size: 2rem;
+ line-height: 0.8;
+ }
+
+ p:nth-child(2) {
+ padding-left: 20px;
+ font-weight: bold;
+ }
}
.links {
@@ -48,7 +58,7 @@
flex-direction: row;
.logo {
- display: flex;
+ display: block;
}
.control {
@@ -78,6 +88,9 @@
flex-direction: column;
.logo {
justify-content: center;
+ display: flex;
+
+ margin-bottom: 10px;
}
.control {