-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Style: sample data button and return input button (#36)
- Loading branch information
Showing
6 changed files
with
38 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,5 +39,5 @@ | |
"last 1 safari version" | ||
] | ||
}, | ||
"proxy": "http://192.168.35.200:8080/" | ||
"proxy": "http://localhost:8080/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,43 @@ | ||
.inputWrapper{ | ||
width: 100%; | ||
max-width: 1200px; | ||
min-width: 300px; | ||
display: flex; | ||
margin: auto; | ||
} | ||
|
||
.inputLink { | ||
width: 30%; | ||
margin: 3px 10px; | ||
background-color: transparent; | ||
height: 30px; | ||
width: calc(50% - 4px); | ||
max-width: 800px; | ||
min-width: 50px; | ||
border: 2px solid rgba(0, 0, 0, 0.23); | ||
border-radius: 7px; | ||
flex-grow: 1; | ||
} | ||
|
||
.inputLink:hover { | ||
box-shadow: 1px 1px 3px #b0bec5; /* 그림자 효과 */ | ||
} | ||
|
||
.selected { | ||
.typeButton.selected { | ||
background-color: #cfd8dc; | ||
width: 60px; | ||
height: 30px; | ||
border-radius: 7px; | ||
margin: 2px; | ||
border: 1px solid #b0bec5; | ||
} | ||
|
||
.selected:hover { | ||
.typeButton.selected:hover { | ||
box-shadow: 1px 1px 3px #607d8b; /* 그림자 효과 */ | ||
} | ||
|
||
.notselected { | ||
.typeButton { | ||
/* background-color: #eceff1; */ | ||
background-color: white; | ||
width: 60px; | ||
height: 30px; | ||
border-radius: 7px; | ||
margin: 2px; | ||
flex-grow: 0; | ||
border: 1px solid #b0bec5; | ||
} | ||
|
||
.notselected:hover { | ||
.typeButton:hover { | ||
box-shadow: 1px 1px 3px #b0bec5; /* 그림자 효과 */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
import "./Button.css"; | ||
export default function Return2InputButton({ setIsGraph }) { | ||
const handleClick = () => { | ||
setIsGraph(false); | ||
}; | ||
|
||
return ( | ||
<> | ||
<button onClick={handleClick}>Return To Input</button> | ||
<button className="returnInputButton" onClick={handleClick}>Return To Input</button> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters