Skip to content

Commit

Permalink
fix: lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
micaelae committed Oct 9, 2024
1 parent b665c23 commit 7c2f8e0
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions ui/pages/bridge/prepare/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@
&__content {
display: flex;
flex-direction: column;
padding: 16px 0px 16px 0px;
padding: 16px 0 16px 0;
border-radius: 8px;
border: 1px solid var(--color-border-muted);
}

&__from, &__to {
&__from,
&__to {
display: flex;
flex-direction: column;
gap: 4px;
Expand Down Expand Up @@ -66,7 +67,8 @@
justify-content: space-between;
width: 298px;

p, span {
p,
span {
color: var(--color-text-alternative);
font-size: 12px;
}
Expand Down Expand Up @@ -102,17 +104,18 @@

input {
text-align: right;
padding-right: 0px;
padding-right: 0;
font-size: 24px;
font-weight: 700;

&:focus, &:focus-visible {
&:focus,
&:focus-visible {
outline: none;
}
}

.mm-text-field--focused {
outline: none
outline: none;
}
}

Expand All @@ -121,7 +124,8 @@
justify-content: center;
align-items: center;

&::before, &::after {
&::before,
&::after {
content: '';
border-top: 1px solid var(--color-border-muted);
flex-grow: 1;
Expand Down Expand Up @@ -166,4 +170,4 @@
cursor: not-allowed;
}
}
}
}

0 comments on commit 7c2f8e0

Please sign in to comment.