Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/features/clipboard/clipboard.component.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:host {
height: 100%;
width: 100%;
max-width: 640px;
max-width: 900px;
display: flex;
}

Expand Down
1 change: 1 addition & 0 deletions src/app/features/settings/settings.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<button mat-button color="warn" (click)="onClearHistory()">Clear History</button>
</div>
<div class="section">
<div class="title">Extras</div>
<div class="option">
<mat-slide-toggle formControlName="developerMode">Developer Mode</mat-slide-toggle>
<mat-icon class="icon material-symbols-outlined" [matTooltip]="developerModeTooltip" matTooltipPosition="right">help</mat-icon>
Expand Down
4 changes: 3 additions & 1 deletion src/app/features/settings/settings.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:host {
height: 100%;
width: 100%;
max-width: 600px;
max-width: 900px;
display: flex;
}

Expand All @@ -29,6 +29,8 @@
.title {
font-size: 18px;
margin-bottom: 15px;
padding-bottom: 5px;
border-bottom: 1px solid $border-color;
}

.option {
Expand Down
2 changes: 1 addition & 1 deletion src/app/features/vaults/vaults.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:host {
height: 100%;
width: 100%;
max-width: 600px;
max-width: 900px;
display: flex;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:host {
height: 100%;
width: 100%;
max-width: 600px;
max-width: 900px;
display: flex;
}

Expand Down
2 changes: 1 addition & 1 deletion src/app/features/wallets/wallets.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:host {
height: 100%;
width: 100%;
max-width: 600px;
max-width: 900px;
display: flex;
}

Expand Down
1 change: 1 addition & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ $secondary-color: #466362;
$success-color: #4ab15e;
$warn-color: #ba3f1d;
$error-color: #b15e4a;
$border-color: #2f2f2f;

$text-gray: #bbbbbb;

Expand Down
Loading