Skip to content

Commit 2000428

Browse files
committed
minor changes
1 parent e9a012d commit 2000428

File tree

2 files changed

+40
-20
lines changed

2 files changed

+40
-20
lines changed

.DS_Store

0 Bytes
Binary file not shown.

src/app/app.component.html

+40-20
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
<style>
1111
:host {
12-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
13-
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
14-
"Segoe UI Symbol";
12+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
13+
Helvetica, Arial, sans-serif, 'Apple Color Emoji',
14+
'Segoe UI Emoji', 'Segoe UI Symbol';
1515
font-size: 14px;
1616
color: #333;
1717
box-sizing: border-box;
@@ -140,7 +140,10 @@
140140
box-shadow: 0 4px 17px rgba(0, 0, 0, 0.35);
141141
}
142142

143-
.card-container .card:not(.highlight-card):hover .material-icons path {
143+
.card-container
144+
.card:not(.highlight-card):hover
145+
.material-icons
146+
path {
144147
fill: rgb(105, 103, 103);
145148
}
146149

@@ -191,7 +194,7 @@
191194
}
192195

193196
.terminal::before {
194-
content: "\2022 \2022 \2022";
197+
content: '\2022 \2022 \2022';
195198
position: absolute;
196199
top: 0;
197200
left: 0;
@@ -206,7 +209,8 @@
206209
}
207210

208211
.terminal pre {
209-
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
212+
font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo,
213+
monospace;
210214
color: white;
211215
padding: 0 1rem 1rem;
212216
margin: 0;
@@ -223,7 +227,8 @@
223227
justify-content: center;
224228
align-items: center;
225229
cursor: pointer;
226-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
230+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
231+
0 1px 2px rgba(0, 0, 0, 0.24);
227232
transition: 1s ease-out;
228233
}
229234

@@ -338,11 +343,18 @@
338343
<body>
339344
<!-- Toolbar -->
340345
<div class="toolbar" role="banner">
341-
<img
342-
width="40"
343-
alt="Angular Logo"
344-
src="https://leetcode.com/static/images/LeetCode_logo_rvs.png"
345-
/>
346+
<a
347+
href="https://leetcode.com/"
348+
title="Leetcode"
349+
target="_blank"
350+
rel="noopener"
351+
>
352+
<img
353+
width="40"
354+
alt="Angular Logo"
355+
src="https://leetcode.com/static/images/LeetCode_logo_rvs.png"
356+
/>
357+
</a>
346358
<span>Leetcode Session Manager</span>
347359
<div class="spacer"></div>
348360
<a
@@ -374,15 +386,20 @@
374386

375387
<div class="card highlight-card card-small">
376388
<span *ngIf="currentChosenSession">
377-
<span>
378-
Current User Session:
379-
</span>
380-
<span style="font-weight: 600;">{{ currentChosenSession?.name }}</span>
381-
</span>
382-
<span *ngIf="!currentChosenSession">No User Session chosen</span>
389+
<span> Current User Session: </span>
390+
<span style="font-weight: 600">{{
391+
currentChosenSession?.name
392+
}}</span>
393+
</span>
394+
<span *ngIf="!currentChosenSession"
395+
>No User Session chosen</span
396+
>
383397
</div>
384398

385-
<p class="note">The above user session will be used for your leetcode submissions</p>
399+
<p class="note">
400+
The above user session will be used for your leetcode
401+
submissions
402+
</p>
386403
<mat-divider>sdsd</mat-divider>
387404
<h4 style="font-weight: 600">
388405
Choose a session to update Current User Session
@@ -393,7 +410,10 @@ <h4 style="font-weight: 600">
393410
(ngModelChange)="onSelect($event)"
394411
[ngModel]="leetcodeSessions"
395412
>
396-
<mat-option *ngFor="let session of leetcodeSessions" [value]="session">
413+
<mat-option
414+
*ngFor="let session of leetcodeSessions"
415+
[value]="session"
416+
>
397417
{{ session.name }}
398418
</mat-option>
399419
</mat-select>

0 commit comments

Comments
 (0)