Skip to content

Commit

Permalink
Inclusão da logo na página de ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
rtenorioh committed Aug 4, 2022
1 parent 2af3ee6 commit a0bc96a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Binary file added frontend/src/assets/Logo_circle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion frontend/src/pages/Tickets/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import Ticket from "../../components/Ticket/";
import { i18n } from "../../translate/i18n";
import Hidden from "@material-ui/core/Hidden";

import logo from "../../assets/Logo_circle.png";

const useStyles = makeStyles((theme) => ({
chatContainer: {
flex: 1,
Expand Down Expand Up @@ -91,7 +93,12 @@ const Chat = () => {
<Hidden only={["sm", "xs"]}>
<Paper className={classes.welcomeMsg}>
{/* <Paper square variant="outlined" className={classes.welcomeMsg}> */}
<span>{i18n.t("chat.noTicketMessage")}</span>
<span>
<center>
<img src={logo} width="50%" alt=""/>
</center>
{i18n.t("chat.noTicketMessage")}
</span>
</Paper>
</Hidden>
)}
Expand Down

0 comments on commit a0bc96a

Please sign in to comment.