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

refactor: update mobile stat x padding #869

Merged
merged 1 commit into from Jun 29, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/views/app/delegates.blade.php
@@ -1,7 +1,7 @@
@component('layouts.app', ['isLanding' => true, 'fullWidth' => true])
@section('content')
<x-general.header class="overflow-auto">
<div class="px-10 md:w-full">
<div class="px-8 md:px-10 md:w-full">
<livewire:delegate-data-boxes />
</div>
</x-general.header>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/network-status-block.blade.php
@@ -1,6 +1,6 @@
<div class="overflow-auto dark:bg-black bg-theme-secondary-100">
<div class="py-8 content-container-full-width">
<div class="px-10 md:w-full">
<div class="px-8 md:px-10 md:w-full">
<div
class="flex grid-cols-2 gap-3 w-full md:grid xl:flex xl:gap-0 xl:space-x-3"
wire:poll.{{ Network::blockTime() }}s
Expand Down
4 changes: 2 additions & 2 deletions resources/views/livewire/stats-highlights.blade.php
@@ -1,6 +1,6 @@
<div class="overflow-auto dark:bg-black bg-theme-secondary-100">
<div class="py-8 content-container-full-width">
<div class="px-10 md:w-full">
<div class="px-8 md:px-10 md:w-full">
<div wire:poll.{{ $refreshInterval }}s class="flex gap-3 w-full md:grid md:grid-cols-2 md:grid-rows-2 xl:grid-cols-4 xl:grid-rows-1">
<x-stats.stat :label="trans('pages.statistics.highlights.total-supply')" icon="stacked-coins">
<x-currency :currency="Network::currency()">{{ $totalSupply }}</x-currency>
Expand All @@ -20,4 +20,4 @@
</div>
</div>
</div>
</div>
</div>