Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NTUEEPLUS-292. column contributor font && team data text alignment && horizontal placement #248

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions backend/routes/srcs/in/column/preload/outline_preload.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
const mongoose = require('../../../../Schemas/db')
const Column_out = require('../../../../Schemas/column_outline')
const Column = require('../../../../Schemas/column')
// anno: ['姓名一、姓名二、姓名三、...'],
// date: 'yyyy/mm/dd', //星期幾感覺不太需要?
// id: 'yymmn', //n是本年本月第幾篇採訪 應該不會超過九篇?
// title: ['xxxx級 xxx (公司名稱與職位)'],
// exp: ['現任:...', '曾任:...'], //若無可不寫
// edu: ['博士:...', '碩士:...', '學士:...'], //若無可不寫
// intro: ['一段簡介']
toInsert = [
{
anno: ['羅韻瑢', '鄭謹譯', '李筠婕', '吳建翰', '余欣澄'],
Expand Down
11 changes: 11 additions & 0 deletions client/src/scss/_matching.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,18 @@
background-size: cover;
margin-top: 20rem;
text-align: center;
top: 50%;
left: 50%;
position: absolute;
transform: translateX(-40%) translateY(-50%);
}

@media only screen and (max-width: 800px) {
.matching {
transform: translateX(-50%) translateY(-50%);
}
}

.form-check > label {
font-size: 1.5rem;
}
Expand Down
2 changes: 1 addition & 1 deletion client/src/views/out/home/team/Team.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const Team = () => {
</div>
<div className="caption">
<h4>{name}</h4>
<p>{job}</p>
<nobr>{job}</nobr>
</div>
</div>
</div>
Expand Down