Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #99 from Unboxed-Software/fix/update-header-padding
Browse files Browse the repository at this point in the history
fix: update header padding in universal template
  • Loading branch information
jamesrp13 authored Sep 12, 2023
2 parents 342a60f + 49e67d5 commit a0f9739
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion core/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class SegmentAnalytics implements Analytics {
private segment: Segment;

constructor() {
this.segment = new Segment({ writeKey: '9hj4nUBAc6g8y9pUC0CTyVlFbwBcrQfK' });
this.segment = new Segment({ writeKey: 'g9GIEwAL2HOQHq6PXg9gHzSjEBuAuRLq' });
addShutdownTask(async (reason) => {
this.logEvent('cli-tool-shutdown', reason);
await this.prepareForShutdown();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ul {
}

.nft-name {
@apply text-black font-semibold;
@apply font-semibold text-black;
font-family: 'Inter';
}

Expand All @@ -63,7 +63,7 @@ ul {
}

.network-dropdown {
@apply w-fit m-auto rounded-xl;
@apply m-auto w-fit rounded-xl;
}

.active-network {
Expand Down Expand Up @@ -123,7 +123,7 @@ ul {
}

.links {
@apply flex justify-center text-white font-semibold mt-5 mb-3 mx-auto;
@apply flex justify-center mx-auto mt-5 mb-3 font-semibold text-white;
}
.link {
@apply transition-[0.1s] px-[30px] py-0;
Expand All @@ -144,7 +144,7 @@ ul {
@apply cursor-pointer;
}
.link-divider {
@apply h-5 w-px;
@apply w-px h-5;
}

.footer-links {
Expand Down Expand Up @@ -202,7 +202,7 @@ ul {
@apply w-[50px] text-center flex items-center justify-center cursor-default;
}
.loading {
@apply animate-spin cursor-default;
@apply cursor-default animate-spin;
}

@keyframes rotation {
Expand All @@ -222,11 +222,11 @@ ul {
@apply text-xl font-semibold text-left mt-0 mb-[25px];
}
.card-label-container {
@apply flex justify-between items-center mb-3;
@apply flex items-center justify-between mb-3;
}

.card-label {
@apply text-sm font-medium cursor-pointer;
@apply text-sm font-medium cursor-pointer;
}
.toast {
@apply fixed w-fit text-white font-medium shadow-[4px_8px_20px_rgba(0,0,0,0.15)] mx-auto my-0 px-4 py-2 rounded-[10px] top-[30px] inset-x-0 bg-[#00875f];
Expand Down Expand Up @@ -273,6 +273,7 @@ a {

.app-header-container {
@apply block;
@apply p-6;
text-align: -webkit-center;
}

Expand Down

0 comments on commit a0f9739

Please sign in to comment.