Skip to content

Commit

Permalink
Update logos/layout
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosNZ committed Nov 25, 2021
1 parent 3252bcf commit 8b2c542
Show file tree
Hide file tree
Showing 22 changed files with 14 additions and 11 deletions.
Binary file added image_resources/conforma logos/conforma_logo.psd
Binary file not shown.
Binary file not shown.
Binary file added images/logos/conforma_logo_1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_white_1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_white_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_white_256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_white_512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_wide_1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_wide_2048.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_wide_256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_wide_512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_wide_white_1024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_wide_white_2048.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_wide_white_256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logos/conforma_logo_wide_white_512.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: 5 additions & 4 deletions semantic/src/site/globals/site.overrides
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ a:hover {
display: flex;
flex-direction: column;
background-color: white;
max-width: 450px;
width: clamp(250px, 35%, 450px);
box-shadow: @basicBoxShadow;
border-radius: @borderRadius;
padding: 20px;
Expand All @@ -205,12 +205,13 @@ a:hover {
}

.login-header {
margin: 0 !important;
margin: 20px 0 0 0 !important;
letter-spacing: @letterSpacingRegular !important;
}

.image-icon {
height: 45px;
// height: 45px;
width: 250px;
margin-right: 12px;
}

Expand Down Expand Up @@ -258,7 +259,7 @@ a:hover {
}

#brand-area {
width: clamp(100px, 25%, 400px);
width: clamp(100px, 25%, 200px);
display: flex;
align-items: center;
gap: 20px;
Expand Down
4 changes: 2 additions & 2 deletions src/containers/User/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import isLoggedIn from '../../utils/helpers/loginCheck'
import { useLanguageProvider } from '../../contexts/Localisation'
import { attemptLogin, attemptLoginOrg } from '../../utils/helpers/attemptLogin'
import { LoginPayload, OrganisationSimple } from '../../utils/types'
const logo = require('../../../images/logos/logo_512.png').default
const logo = require('../../../images/logos/conforma_logo_wide_1024.png').default
import config from '../../config'

const LOGIN_AS_NO_ORG = 0
Expand Down Expand Up @@ -100,7 +100,7 @@ const Login: React.FC = () => {
<Container id="login-container">
{languageOptions.length > 1 && <LanguageSelector />}
<div id="login-box">
<div className="flex-centered">
<div className="flex-column-center">
<Image src={logo} className="image-icon" />
<Header as="h3" className="login-header">
{strings.TITLE_LOGIN_HEADER}
Expand Down
10 changes: 6 additions & 4 deletions src/containers/User/UserArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { useRouter } from '../../utils/hooks/useRouter'
import config from '../../config'
import { getFullUrl } from '../../utils/helpers/utilityFunctions'
import { UiLocation } from '../../utils/generated/graphql'
const brandLogo = require('../../../images/brand_logo.png').default
const brandLogo = require('../../../images/logos/conforma_logo_wide_white_1024.png').default

const UserArea: React.FC = () => {
const {
Expand Down Expand Up @@ -182,12 +182,14 @@ const BrandArea: React.FC = () => {
const { strings } = useLanguageProvider()
return (
<div id="brand-area" className="hide-on-mobile">
<Image src={brandLogo} />
<Link to="/">
<Image src={brandLogo} />
</Link>
<div>
<Link to="/">
{/* <Link to="/">
<h2 className="brand-area-text">{strings.APP_NAME}</h2>
<h3 className="brand-area-text">{strings.APP_NAME_SUBHEADER}</h3>
</Link>
</Link> */}
</div>
</div>
)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/defaultLanguageStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export default {
TITLE_HISTORY_REVIEW: 'Review',
TITLE_HISTORY_SUBMITTED_BY_APPLICANT: 'Submitted by applicant',
TITLE_HISTORY_PANEL: 'Review History',
TITLE_LOGIN_HEADER: 'Conforma Application Manager',
TITLE_LOGIN_HEADER: 'Application Manager',
TITLE_LOGIN: 'Login',
TITLE_APPLICATION_FORM: 'application form',
TITLE_APPLICATION_SUMMARY: 'Review and Submit',
Expand Down

0 comments on commit 8b2c542

Please sign in to comment.