Skip to content

Commit 8b22dca

Browse files
authored
Merge pull request #3 from SpoopyTim/fix/compose-context
Fix/compose context
2 parents 2f5cd31 + f367812 commit 8b22dca

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020
#Uncomment below to build locally
2121
# image: lightspeed-react
2222
# build:
23-
# context: ./react
23+
# context: ./frontend
2424
# dockerfile: Dockerfile
2525
env_file: '.env'
2626
restart: on-failure

frontend/public/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<meta name="theme-color" content="#000000" />
99
<meta name="description" content="Web site created using create-react-app" />
10-
<script src="https://kit.fontawesome.com/99754263de.js" crossorigin="anonymous"></script>
10+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
11+
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/js/all.js"></script>
1112
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
1213
<link rel="preconnect" href="https://fonts.gstatic.com">
1314
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">

frontend/src/assets/constants.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export const LightspeedLogoURL = "/images/lightspeedlogo.svg";
22
export const VideoPosterURL = "/images/videoPoster.jpg";
3+
export const CenterIcon = { display: "block", textAlign: "left", paddingTop: "10px" }

frontend/src/components/LiveChat.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const LiveChat = () => {
1616
</ChatHeading>
1717

1818
<ChatBody>
19-
<i className="fas fa-construction fa-3x"></i>
19+
<i className="fas fa-wrench fa-3x"></i>
2020
<h4>Coming Soon!</h4>
2121
</ChatBody>
2222
</ChatMain>

frontend/src/components/VideoDetails.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ import {
99
AlphaTag,
1010
ViewerTag,
1111
} from "../styles/videoDetailsStyles";
12-
import { LightspeedLogoURL } from "../assets/constants";
12+
import { LightspeedLogoURL, CenterIcon } from "../assets/constants";
1313

1414
const VideoDetails = ({ viewers }) => {
1515
return (
1616
<VideoDetailsContainer>
1717
<DetailsTop>
1818
<AlphaTag>
19-
<i className="fas fa-construction badge-icon"></i>
19+
<i className="fas fa-wrench" style={CenterIcon}></i>
2020
<span>Alpha</span>
2121
</AlphaTag>
2222
<ViewerTag>
23-
<i className="fas fa-user-friends"></i>
23+
<i className="fas fa-user-friends" style={CenterIcon}></i>
2424
<span>{viewers}</span>
2525
</ViewerTag>
2626
</DetailsTop>

0 commit comments

Comments
 (0)