Skip to content

Commit

Permalink
Minor fixes - Added width in CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshayman committed Dec 24, 2023
1 parent 0bc3139 commit d60f19f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions app/styles/identity.css
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@
}

.identity-hero {
width: 25%;
position: absolute;
left: 0;
bottom: 0;
Expand Down Expand Up @@ -241,6 +242,7 @@
}

.identity-rds-logo {
width: 214px;
margin-top: 4%;
}

Expand All @@ -252,6 +254,7 @@

.identity-header {
position: absolute;
width: 100%;
top: -32px;
z-index: 0;
}
Expand Down
6 changes: 3 additions & 3 deletions app/templates/identity.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

{{#if this.isDev}}
<div class='identity-page'>
<img alt="header" class='identity-header' src='identity/header.svg' width='100%' />
<img alt="hero" class='identity-hero' src='identity/hero.svg' width='25%' />
<img alt="rds" class='identity-rds-logo' src='identity/logo.svg' width='214px' />
<img alt="header" class='identity-header' src='identity/header.svg' />
<img alt="hero" class='identity-hero' src='identity/hero.svg' />
<img alt="rds" class='identity-rds-logo' src='identity/logo.svg' />
{{#if (eq this.state 'getStarted')}}
<div class='identity-heading'>Connect your Profile Service with Identity
Service</div>
Expand Down

0 comments on commit d60f19f

Please sign in to comment.