Skip to content

Commit

Permalink
[ES-1908] minor css fixes. (#1038)
Browse files Browse the repository at this point in the history
Signed-off-by: GurukiranP <[email protected]>
  • Loading branch information
gk-4VII authored Dec 11, 2024
1 parent fc6f913 commit ce72dcb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions oidc-ui/public/theme/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
--login-card-box-color: #BCC0C7;
--login-card-box-hover-color: var(--primary-color);
--login-card-box-focus-color: var(--primary-color);
--login-background: #FCFCFF;
--login-background: #f7f9fd;
--language-icon-color: #FFFFFF;
--language-icon-bg-color: var(--primary-color);
--login-background-min-height: calc(100vh - 104.6px) !important;
Expand Down Expand Up @@ -250,7 +250,7 @@
--login-card-box-color: #bcc0c7;
--login-card-box-hover-color: var(--primary-color);
--login-card-box-focus-color: var(--primary-color);
--login-background: #fcfcff;
--login-background: #f7f9fd;
--login-background-image: url("/images/section-bg.png");
--login-background-min-height: calc(100vh - 157.6px) !important;
--language-icon-color: #ffffff;
Expand Down Expand Up @@ -306,13 +306,13 @@
--multipurpose-login-card-background-color: #ffffff;
--side-section-bg-with: 226px;
--top-left-bg-logo-url: url("/images/top_left_bg_logo.svg");
--top-left-bg-logo-display: none;
--top-left-bg-logo-display: block;
--bottom-left-bg-logo-url: url("/images/bg_bottom_left.png");
--bottom-left-bg-logo-display: none;
--top-right-bg-logo-url: url("/images/top_left_bg_logo.svg");
--top-right-bg-logo-display: none;
--bottom-right-bg-logo-url: url("/images/bottom_right_bg_logo.svg");
--bottom-right-bg-logo-display: none;
--bottom-right-bg-logo-display: block;
--login-client-logo-image-height: 3.25rem;
--login-client-logo-image-width: 3.25rem;
--login-alternate-arrow: "\21CB";
Expand Down
8 changes: 4 additions & 4 deletions oidc-ui/src/app/AppRouter.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ export const AppRouter = () => {
) : (
<>
<img
className="top_left_bg_logo hidden md:block"
className="top_left_bg_logo hidden md:block w-60 h-60"
alt="top left background"
/>
<img
className="bottom_left_bg_logo hidden md:block"
className="bottom_left_bg_logo hidden md:block w-60 h-60"
alt="bottom left background"
/>
<img
className="top_right_bg_logo hidden md:block"
className="top_right_bg_logo hidden md:block w-60 h-60"
alt="top right background"
/>
<img
className="bottom_right_bg_logo hidden md:block"
className="bottom_right_bg_logo hidden md:block w-60 h-60"
alt="bottom right background"
/>
</>
Expand Down

0 comments on commit ce72dcb

Please sign in to comment.