Skip to content

Commit

Permalink
tech(active-wallet): use scss vars
Browse files Browse the repository at this point in the history
  • Loading branch information
eliobricenov committed Dec 20, 2024
1 parent 3cfe470 commit 5a5d41d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions src/components/ActiveWalletSection/index.module.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.newWalletDetectedContainer {
display: flex;
gap: 12px;
padding: 8px 16px;
border-radius: 8px;
gap: var(--space-md);
padding: var(--space-xs) var(--space-md);
border-radius: var(--space-xs-fixed);
background-color: var(--color-tertiary-400);
color: var(--color-neutral-800);
}
Expand All @@ -28,25 +28,25 @@
.infoTextContainer {
display: flex;
flex-direction: column;
gap: 6px;
gap: var(--space-2xs);
}

.container {
display: flex;
flex-direction: column;
gap: 6px;
gap: var(--space-2xs);
}

.root {
display: flex;
flex-direction: column;
gap: 16px;
gap: var(--space-md);
}

.walletContainer {
display: flex;
padding: 9px 12px;
border-radius: 8px;
padding: var(--space-xs) var(--space-sm);
border-radius: var(--space-xs-fixed);
border: 1px solid var(--color-stroke-01);
align-items: center;
justify-content: space-between;
Expand All @@ -64,12 +64,12 @@
.inputLikeContainer {
display: flex;
flex-direction: column;
gap: 6px;
gap: var(--space-2xs);
}

.setActiveWalletContainer {
display: flex;
gap: 6px;
gap: var(--space-2xs);
}

.setConnectedWalletInput {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
.container {
display: flex;
flex-direction: column;
gap: 16px;
gap: var(--space-md);
width: 100%;
}

0 comments on commit 5a5d41d

Please sign in to comment.