Skip to content

Commit

Permalink
Merge pull request #1043 from ORCID/add-css
Browse files Browse the repository at this point in the history
add css
  • Loading branch information
bobcaprice authored Oct 26, 2023
2 parents 99a383b + 2702003 commit 114b00b
Show file tree
Hide file tree
Showing 9 changed files with 2,372 additions and 15 deletions.
1 change: 0 additions & 1 deletion gateway/src/main/webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<link rel="stylesheet" href="content/css/quill.snow.css">
<link rel="stylesheet" href="content/css/quill.core.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">

<!-- jhipster-needle-add-resources-to-root - JHipster will add new resources here -->
</head>
Expand Down
6 changes: 4 additions & 2 deletions ui/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"src/content/images"
],
"styles": [
"src/styles.scss"
"src/content/scss/wro.css",
"src/content/scss/global.scss"
],
"scripts": []
},
Expand Down Expand Up @@ -101,7 +102,8 @@
"src/assets"
],
"styles": [
"src/styles.scss"
"src/content/scss/wro.css",
"src/content/scss/global.scss"
],
"scripts": []
}
Expand Down
1,712 changes: 1,710 additions & 2 deletions ui/package-lock.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,19 @@
"private": true,
"dependencies": {
"@angular/animations": "^16.2.9",
"@angular/cdk": "^16.2.9",
"@angular/common": "^16.2.9",
"@angular/compiler": "^16.2.9",
"@angular/core": "^16.2.9",
"@angular/forms": "^16.2.9",
"@angular/material": "^16.2.9",
"@angular/platform-browser": "^16.2.9",
"@angular/platform-browser-dynamic": "^16.2.9",
"@angular/router": "^16.2.9",
"@fortawesome/angular-fontawesome": "^0.13.0",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@ng-bootstrap/ng-bootstrap": "^15.1.1",
"bootstrap": "^5.3.2",
"moment": "^2.29.4",
"ngx-webstorage": "^12.0.0",
"rxjs": "~7.5.0",
Expand All @@ -41,4 +44,4 @@
"karma-jasmine-html-reporter": "~2.0.0",
"typescript": "~4.9.5"
}
}
}
2 changes: 1 addition & 1 deletion ui/src/app/layout/navbar/navbar.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type EntityResponseType = HttpResponse<IMember>
@Component({
selector: 'app-navbar',
templateUrl: './navbar.component.html',
styleUrls: ['navbar.scss'],
styleUrls: ['./navbar.scss'],
})
export class NavbarComponent implements OnInit {
isNavbarCollapsed: boolean
Expand Down
Loading

0 comments on commit 114b00b

Please sign in to comment.