Skip to content

Commit 4454acd

Browse files
committed
cleanup
1 parent 8094a9d commit 4454acd

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ WORKDIR /app
2222

2323
COPY . .
2424
RUN --mount=type=secret,id=GIT_AUTH_TOKEN env NPM_CONFIG_TOKEN=$(cat /run/secrets/GIT_AUTH_TOKEN) sh -c 'npm ci'
25-
RUN npm run ng -- build --configuration $ENVIRONMENT
25+
RUN npm run ng -- build --configuration "$ENVIRONMENT"
2626

2727
FROM nginx:stable-alpine
2828
COPY --from=build /app/dist/credential-issuer-frontend /usr/share/nginx/html

src/app/app.component.scss

+2-5
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ div {
6868
align-items: center;
6969
margin: 2rem 0;
7070

71-
qrcode {
72-
margin-bottom: 1rem;
73-
}
74-
7571
button {
7672
background-color: #007bff;
7773
color: #fff;
@@ -93,5 +89,6 @@ div {
9389
}
9490

9591
.demoBorder {
96-
border: 10px;
92+
border: 1rem;
93+
margin-bottom: 1rem;
9794
}

src/app/app.component.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { Component, OnInit } from '@angular/core';
17+
import { Component, OnInit, HostListener } from '@angular/core';
1818
import { HttpClient } from '@angular/common/http';
1919
import { interval } from 'rxjs';
2020
import { takeWhile } from 'rxjs/operators';
2121
import { environment } from '../environments/environment';
22-
import { HostListener } from "@angular/core";
2322

2423
@Component({
2524
selector: 'app-root',

0 commit comments

Comments
 (0)