Skip to content

Commit 0760fd3

Browse files
authored
Merge pull request #46 from DMU-DebugVisual/sunwoong
회원가입 UI 개선 및 사이트 전반적 브랜딩 적용
2 parents 575864a + 262ea6a commit 0760fd3

File tree

16 files changed

+203
-57
lines changed

16 files changed

+203
-57
lines changed

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
5+
<link rel="icon" href="%PUBLIC_URL%/logo4.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
88
<meta
@@ -24,7 +24,7 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27-
<title>React App</title>
27+
<title>Zivorp</title>
2828
</head>
2929
<body>
3030
<noscript>You need to enable JavaScript to run this app.</noscript>

public/logo4.png

1.41 MB
Loading

src/assets/github.png

8.44 KB
Loading

src/assets/google.png

1.36 MB
Loading

src/assets/logo1.png

61.3 KB
Loading

src/assets/logo2.png

4.53 MB
Loading

src/assets/logo3.png

698 KB
Loading

src/components/codecast/Codecast.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
2+
13
.broadcast-container {
2-
background-color: #f9f9f9;
4+
background-color: #ffffff;
35
min-height: 100vh;
46
padding: 100px 20px;
57
text-align: center;
@@ -32,7 +34,8 @@
3234
padding: 40px 30px;
3335
border-radius: 12px;
3436
max-width: 550px;
35-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
37+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* 테두리와 그림자 병행 */
38+
3639
}
3740

3841
.broadcast-card h3 {

src/components/codecast/Codecast.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {Link} from "react-router-dom";
66
const Codecast = () => {
77
return (
88
<div>
9+
910
<section className="broadcast-container">
1011
<div className="broadcast-header">
1112
<FaDesktop className="broadcast-icon" />

src/components/community/Community.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
/* 🌙 다크모드 스타일 */
2+
.dark-mode .community-wrapper {
3+
background-color: #1e1e1e;
4+
}
25
.dark-mode .community-page {
36
background-color: #1e1e1e;
47
color: #f0f0f0;
@@ -114,6 +117,24 @@
114117

115118
/* ✅ 기존 스타일 유지 */
116119
/* 전체 레이아웃 */
120+
.community-wrapper {
121+
background-color: #ffffff;
122+
min-height: 100vh;
123+
width: 100%;
124+
display: flex;
125+
flex-direction: column;
126+
}
127+
128+
body {
129+
margin: 0;
130+
padding: 0;
131+
background-color: #ffffff;
132+
}
133+
134+
html {
135+
background-color: #ffffff;
136+
}
137+
117138
.community-page {
118139
display: flex;
119140
gap: 24px;
@@ -561,3 +582,4 @@ span.tag {
561582
cursor: pointer;
562583
white-space: nowrap;
563584
}
585+

0 commit comments

Comments
 (0)