Skip to content

Commit

Permalink
Using the new logos in the UI
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-ignatov committed Jul 8, 2024
1 parent 192f939 commit a15bf2a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import ClientRegistration from "./ClientRegistration"
import ServerInfo from "./ServerInfo"
import "./style.scss"

// @ts-ignore
import logo from "../../static/img/logo.svg"


export default function App() {
const [tabIndex, setTabIndex] = useState(1);
Expand All @@ -25,7 +28,8 @@ export default function App() {
<div className="container">
<h1 className="navbar-brand m-0">
<a className="navbar-brand text-primary-emphasis" href="/" style={{ textShadow: "0 1px 1px #FFF" }}>
<i className="bi bi-fire me-1" />
{/* <i className="bi bi-fire me-1" /> */}
<img src={logo} width="66" style={{ margin: "-20px 6px -20px 0" }} />
Bulk Match Provider
</a>
</h1>
Expand Down
5 changes: 4 additions & 1 deletion src/app/sample-app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ import {
} from "./State"
import "./style.scss"

// @ts-ignore
import logo from "../../../static/img/logo-light.svg"


export default function App() {
const [state, dispatch] = useReducer(reducer, initialState);
Expand All @@ -39,7 +42,7 @@ export default function App() {
<nav className="navbar sticky-top navbar-expand-lg bg-primary">
<div className="container">
<a className="navbar-brand text-white" href="/">
<i className="bi bi-fire me-1" />
<img src={logo} width="56" style={{ margin: "-20px 6px -20px 0" }} />
Bulk-Match <small className="opacity-50">Sample App</small>
</a>
<button
Expand Down

0 comments on commit a15bf2a

Please sign in to comment.