Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김대휘
/
Do-gether
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김대휘
2020-06-26 00:31:26 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
65f5953555224053eade2b8fc21120fd0ca1a1ec
65f59535
1 parent
6a7d889f
디테일 수정
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
5 deletions
client/public/index.html
client/src/components/BodyLayout.js
client/src/components/ModifyControl.js
client/src/components/TodoCard.js
client/src/pages/LoginPage.js
client/src/pages/SignUpPage.js
client/public/index.html
View file @
65f5953
...
...
@@ -2,6 +2,8 @@
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
/>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1"
>
<link
rel=
"stylesheet"
href=
"%PUBLIC_URL%/index.css"
/>
<link
rel=
"stylesheet"
href=
"https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
...
...
client/src/components/BodyLayout.js
View file @
65f5953
...
...
@@ -90,7 +90,7 @@ export default function BodyLayout() {
return
(
<>
{
showDate
}
<
Grid
item
xs
=
{
6
}
sm
=
{
6
}
md
=
{
3
}
>
<
Grid
item
xs
=
{
12
}
sm
=
{
6
}
md
=
{
3
}
>
<
TodoCard
key
=
{
card
.
id
}
data
=
{
card
}
...
...
client/src/components/ModifyControl.js
View file @
65f5953
...
...
@@ -120,6 +120,7 @@ export default function AddButton({ data, handleClose }) {
ck
:
initCK
.
join
(
","
),
});
handleClose
();
window
.
location
.
reload
(
false
);
}
};
...
...
client/src/components/TodoCard.js
View file @
65f5953
...
...
@@ -10,13 +10,14 @@ import SettingButton from "./SettingButton.js";
const
useStyles
=
makeStyles
({
root
:
{
margin
:
10
,
margin
:
"0.5rem"
,
},
date
:
{
fontSize
:
14
,
fontSize
:
"0.8rem"
,
float
:
"left"
,
},
title
:
{
fontSize
:
"1.4rem"
,
clear
:
"both"
,
float
:
"left"
,
},
...
...
client/src/pages/LoginPage.js
View file @
65f5953
...
...
@@ -16,7 +16,8 @@ const useStyles = makeStyles((theme) => ({
backgroundColor
:
"rgba(0,0,0,0.8)"
,
},
paper
:
{
width
:
"25rem"
,
width
:
"80%"
,
maxWidth
:
"25rem"
,
height
:
"28rem"
,
marginTop
:
"8rem"
,
marginLeft
:
"auto"
,
...
...
client/src/pages/SignUpPage.js
View file @
65f5953
...
...
@@ -16,7 +16,8 @@ const useStyles = makeStyles((theme) => ({
backgroundColor
:
"rgba(0,0,0,0.8)"
,
},
paper
:
{
width
:
"25rem"
,
width
:
"80%"
,
maxWidth
:
"25rem"
,
height
:
"28rem"
,
marginTop
:
"8rem"
,
marginLeft
:
"auto"
,
...
...
Please
register
or
login
to post a comment