Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Commit

Permalink
feat/logo
Browse files Browse the repository at this point in the history
  • Loading branch information
nyanofthemoon authored Jul 17, 2019
1 parent e03702a commit 795433b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 2 deletions.
Binary file removed client/public/images/cqgc.jpg
Binary file not shown.
Binary file added client/public/images/cqgc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion client/src/components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const Header = ({
<Layout.Header id="header">
<Row type="flex">
<Col span={16}>
<img width="90%" alt={title} src="/images/cqgc.jpg" />
<img className="logo" alt={title} src="/images/cqgc.png" />
</Col>
<Col span={5} align="end">
{user.username !== null && (
Expand Down
7 changes: 7 additions & 0 deletions client/src/containers/App/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ header#header {
font-size: 12px;
color: $link-color;
}

img.logo {
height: 160px;
position: relative;
top: -46px;
filter: drop-shadow(0px 0px 1px #000000);
}
}

nav#navigation {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clin-frontend",
"version": "1.1.2",
"version": "1.1.9",
"versionName": "Alpha Strain",
"dependencies": {
"@babel/core": "7.2.2",
Expand Down
7 changes: 7 additions & 0 deletions redeploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
docker-compose build
docker tag localhost:5000/clin-frontend-nginx:latest localhost:5000/clin-frontend-nginx:${1}
docker push localhost:5000/clin-frontend-nginx:latest
docker push localhost:5000/clin-frontend-nginx:${1}
docker stack rm qaFront
docker stack deploy -c docker-compose.yml qaFront
docker service update qaFront_nginx --image localhost:5000/clin-frontend-nginx:${1}

0 comments on commit 795433b

Please sign in to comment.