Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: explorer for mobile layout #568

Merged
merged 1 commit into from
Jul 24, 2023
Merged
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
14 changes: 8 additions & 6 deletions projects/explorer/src/app/views/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,17 @@
<button class="align-middle" mat-icon-button routerLink="/">
<img class="p-1 w-10 h-10" src="assets/favicon.png" />
</button>
<div class="flex-1 mx-2 text-2xl">
<div class="flex-1 text-2xl sm:mx-2">
<div class="hidden xl:block pr-2">UnUniFi</div>
<div>Explorer</div>
</div>
<app-node-tool></app-node-tool>
<button class="btn gap-1 btn-primary w-full md:w-auto md:px-8" (click)="onClickOpenPortal()">
<mat-icon class="md:ml-3">wallet</mat-icon>
<span class="hidden md:inline">Open Portal</span>
</button>
<div class="flex-none">
<app-node-tool></app-node-tool>
<button class="btn gap-1 btn-primary w-auto md:px-8" (click)="onClickOpenPortal()">
<mat-icon class="md:ml-3">wallet</mat-icon>
<span class="hidden md:inline">Open Portal</span>
</button>
</div>
</div>
<!-- Page content here -->
<div class="w-full max-w-screen-xl mx-auto p-8">
Expand Down
Loading