Skip to content

Commit

Permalink
app_bar_update_on_login_and_timed_out_session
Browse files Browse the repository at this point in the history
  • Loading branch information
NoelKova committed Jul 30, 2024
1 parent 0aa2c19 commit 288b7bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/sensenet/src/components/login/auth-override-skeleton.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AppBar, Button, Container, createStyles, makeStyles, Theme, Toolbar, Typography } from '@material-ui/core'
import React from 'react'
import { NavLink } from 'react-router-dom'
import logo from '../../assets/sensenet-icon-32.png'
import logo from '../../../../../../sn-client/examples/sn-dms-demo/src/assets/sensenet_white.png'
import { globals, useGlobalStyles } from '../../globalStyles'

const useStyles = makeStyles((theme: Theme) =>
Expand Down Expand Up @@ -58,7 +58,7 @@ export const AuthOverrideSkeleton = (props: {
<Toolbar className={classes.toolBar}>
<div className={globalClasses.centeredVertical}>
<NavLink to="/" style={{ display: 'flex', marginRight: '38px' }}>
<img src={logo} alt="logo" />
<img src={logo} alt="logo" style={{ height: '32px', marginTop: '1px' }} />
</NavLink>
</div>
</Toolbar>
Expand Down
4 changes: 2 additions & 2 deletions apps/sensenet/src/components/login/login-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { PathHelper } from '@sensenet/client-utils'
import { clsx } from 'clsx'
import React, { useRef } from 'react'
import { Link } from 'react-router-dom'
import snLogo from '../../assets/sensenet-icon-32.png'
import snLogo from '../../../../../../sn-client/examples/sn-dms-demo/src/assets/sensenet_white.png'
import { globals, useGlobalStyles } from '../../globalStyles'
import { useLocalization } from '../../hooks'

Expand Down Expand Up @@ -77,7 +77,7 @@ export default function LoginPage({ handleSubmit, isLoginInProgress }: LoginPage
<Grid item xs={1}>
<Grid container style={{ paddingLeft: '16px', paddingTop: '4px' }}>
<Link to="/">
<img src={snLogo} alt="sensenet logo" />
<img src={snLogo} alt="sensenet logo" style={{ height: '32px', marginTop: '1px' }} />
</Link>
</Grid>
</Grid>
Expand Down

0 comments on commit 288b7bd

Please sign in to comment.