Browse Source

V0.1h Bootstrapeinbindung als CSS für die navbar

master
Christian Greif 3 years ago
parent
commit
0439bcdcef
4 changed files with 9 additions and 2 deletions
  1. 5
    0
      package-lock.json
  2. 1
    0
      package.json
  3. 2
    2
      src/app/app.component.ts
  4. 1
    0
      src/styles.css

+ 5
- 0
package-lock.json View File

@@ -2500,6 +2500,11 @@
"integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
"dev": true
},
"bootstrap": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.5.0.tgz",
"integrity": "sha512-Z93QoXvodoVslA+PWNdk23Hze4RBYIkpb5h8I2HY2Tu2h7A0LpAgLcyrhrSUyo2/Oxm2l1fRZPs1e5hnxnliXA=="
},
"brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",

+ 1
- 0
package.json View File

@@ -19,6 +19,7 @@
"@angular/platform-browser": "~9.1.7",
"@angular/platform-browser-dynamic": "~9.1.7",
"@angular/router": "~9.1.7",
"bootstrap": "^4.5.0",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"

+ 2
- 2
src/app/app.component.ts View File

@@ -1,9 +1,9 @@
import {Component, OnInit} from '@angular/core';
import {Component} from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: 'app.component.html'
})
export class AppComponent implements OnInit {
export class AppComponent {

constructor(){


+ 1
- 0
src/styles.css View File

@@ -1,3 +1,4 @@
@import '~bootstrap/dist/css/bootstrap.css';
body {
font-family: Helvetica;
padding-left: 15px;

Loading…
Cancel
Save