Skip to content

Commit

Permalink
fix: remove background image, use neutral colors for welcome screen (o…
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryT-CG authored Feb 21, 2025
1 parent 7cfebd6 commit 8eda746
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
3 changes: 2 additions & 1 deletion src/app/shell/components/error-page.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Location } from '@angular/common'
import { Component } from '@angular/core'
import { Location } from '@angular/common'
import { ActivatedRoute } from '@angular/router'

import { getLocation } from '@onecx/accelerator'

@Component({
Expand Down
4 changes: 3 additions & 1 deletion src/app/shell/components/not-found-page.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { Component } from '@angular/core'

import { Observable } from 'rxjs'

import { AppStateService } from '@onecx/angular-integration-interface'
import { Workspace } from '@onecx/integration-interface'
import { Observable } from 'rxjs'

@Component({
template: `
Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h1>Welcome</h1>
stroke-linecap="round"
cx="33"
cy="33"
r="30"
r="25"
></circle>
</svg>
</div>
Expand Down
9 changes: 2 additions & 7 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ body {

.layout-content {
overflow: auto;
background-size: 500px !important;
background-color: transparent;
background-image: url(assets/images/onecx_watermark.png);
background-repeat: no-repeat;
background-position: center center;
}

.splash {
Expand All @@ -29,8 +24,8 @@ body {
display: none;
align-items: center;
justify-content: center;
background: rgb(0, 123, 180);
color: white;
background: transparent;
color: #555;
z-index: 999;
position: fixed;
top: 0;
Expand Down

0 comments on commit 8eda746

Please sign in to comment.