Commit 2e4aaf40 authored by seoyeon's avatar seoyeon
Browse files

0705

parent 0eb44346
import { Link } from "react-router-dom"; import { Link } from 'react-router-dom'
const Header = () => { const Header = () => {
return ( return (
<div> <div>
<form <form
style={{ backgroundColor: "#FCF4FF" }} style={{ backgroundColor: '#FCF4FF' }}
className="flex-column align-items-center justify-content-center p-2" className="flex-column align-items-center justify-content-center p-2"
> >
<div className="d-flex justify-content-center"> <div className="d-flex justify-content-center">
<Link to="/user"> <Link to="/user">
<img src="/BORA.png" style={{ width: "160px" }} /> <img src="/BORA.png" style={{ width: '160px' }} />
</Link> </Link>
</div> </div>
</form> </form>
<div <div
style={{ backgroundColor: "#262626", width: "auto", height: "2px" }} style={{ backgroundColor: '#262626', width: 'auto', height: '2px' }}
></div> ></div>
</div> </div>
); )
}; }
export default Header; export default Header
...@@ -2,40 +2,48 @@ import ScreenSelect from './ScreenSelect' ...@@ -2,40 +2,48 @@ import ScreenSelect from './ScreenSelect'
import video_btn from '../../videobtn.png' import video_btn from '../../videobtn.png'
import speaker_btn from '../../speakerbtn.png' import speaker_btn from '../../speakerbtn.png'
import mic_btn from '../../micbtn.png' import mic_btn from '../../micbtn.png'
import videooff_btn from '../../videooffbtn.png'
import speakeroff_btn from '../../speakeroffbtn.png'
import micoff_btn from '../../micoffbtn.png'
const Controller = () => { const Controller = () => {
return ( return (
<div className="container"> <div className="container">
<div className="row"> <div className="row">
<div <div
className="col d-flex justify-content-center" className="col d-flex justify-content-center"
style={{ backgroundColor: '#C4C4C4' }} style={{ backgroundColor: '#C4C4C4', position:'absolute', bottom:0 }}
> >
<div className="col d-flex justify-content-center"> {/* <div className="col d-flex justify-content-center">
<button type="button" className="btn"> <button type="button" className="btn">
<img src={mic_btn} width="45" height="40" /> <img src={mic_btn} width="45" height="40" />
</button> </button>
</div> */}
<div className="col d-flex justify-content-center">
<button type="button" className="btn" onClick>
<img src={micoff_btn} width="45" height="40" />
</button>
</div>
<div className="col d-flex justify-content-center">
<button type="button" className="btn">
<img src={speakeroff_btn} width="45" />
</button>
</div>
<div className="col d-flex justify-content-center">
<button
type="button"
className="btn"
data-bs-toggle="modal"
data-bs-target="#exampleModal"
src={video_btn}
onClick="location.href='ScreenSelect.js'"
>
<img src={videooff_btn} width="45" />
</button>
</div>
</div> </div>
<div className="col d-flex justify-content-center"> <ScreenSelect />
<button type="button" className="btn">
<img src={speaker_btn} width="45" />
</button>
</div>
<div className="col d-flex justify-content-center">
<button
type="button"
className="btn"
data-bs-toggle="modal"
data-bs-target="#exampleModal"
src={video_btn}
onClick="location.href='ScreenSelect.js'"
>
<img src={video_btn} width="45" />
</button>
</div>
</div> </div>
<ScreenSelect />
</div> </div>
</div>
) )
} }
......
import { Link } from "react-router-dom"; import { Link } from 'react-router-dom'
const RoomHeader = () => { const RoomHeader = () => {
return ( return (
...@@ -6,7 +6,7 @@ const RoomHeader = () => { ...@@ -6,7 +6,7 @@ const RoomHeader = () => {
<div className="row"> <div className="row">
<div <div
className=" col d-flex justify-content-space-between" className=" col d-flex justify-content-space-between"
style={{ backgroundColor: "#C4C4C4" }} style={{ backgroundColor: '#C4C4C4' }}
> >
<img <img
className="m-2 rounded-circle" className="m-2 rounded-circle"
...@@ -17,26 +17,38 @@ const RoomHeader = () => { ...@@ -17,26 +17,38 @@ const RoomHeader = () => {
<p <p
className="m-2" className="m-2"
style={{ style={{
fontWeight: "bold", fontWeight: 'bold',
fontSize: "15px", fontSize: '15px',
whiteSpace: "pre-wrap",
}} }}
> >
<p>데계 재밌는 수학과</p> #ASV2AE98 <p
style={{
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
width: '110px',
}}
>
데계 재밌는 수학과
</p>{' '}
#ASV2AE985
</p> </p>
<p className="m-2" style={{ fontWeight: "bold", fontSize: "20px" }}> <p
회의 className='mt-3'
style={{ fontWeight: 'bold', fontSize: '20px', color: '#571e80' }}
>
Ch.회의
</p> </p>
<Link to="/user"> <Link to="/user">
<button <button
type="button" type="button"
className="m-2 rounded" className="mt-3 ms-3 rounded"
style={{ style={{
height: "30px", height: '30px',
fontWeight: "bold", fontWeight: 'bold',
backgroundColor: "#E8B7FF", backgroundColor: '#E8B7FF',
color: "black", color: 'black',
border: "1px #f4c1f2", border: '1px #f4c1f2',
}} }}
> >
돌아가기 돌아가기
...@@ -45,7 +57,7 @@ const RoomHeader = () => { ...@@ -45,7 +57,7 @@ const RoomHeader = () => {
</div> </div>
</div> </div>
</div> </div>
); )
}; }
export default RoomHeader; export default RoomHeader
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment