patch 1 (#1244)
This commit is contained in:
parent
1366f8d3ce
commit
b9436def23
4 changed files with 11 additions and 1 deletions
|
@ -390,7 +390,6 @@ export default function WalletSendTip(props: Props) {
|
|||
label={__('Buy/Swap Credits')}
|
||||
navigate={`/$/${PAGES.BUY}`}
|
||||
/>
|
||||
<Button button="link" label={__('Nevermind')} onClick={doHideModal} />
|
||||
</div>
|
||||
}
|
||||
/>
|
||||
|
|
|
@ -175,6 +175,7 @@
|
|||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
display: unset;
|
||||
|
||||
&:hover {
|
||||
color: var(--color-secondary);
|
||||
|
|
|
@ -379,6 +379,7 @@ $thumbnailWidthSmall: 2rem;
|
|||
padding-bottom: var(--spacing-xs);
|
||||
font-size: var(--font-small);
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
color: var(--color-text);
|
||||
|
||||
&:not(:first-child) {
|
||||
margin-top: var(--spacing-xs);
|
||||
|
|
|
@ -1068,6 +1068,10 @@ img {
|
|||
}
|
||||
|
||||
.publishList-wrapper {
|
||||
.help {
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
@media (min-width: $breakpoint-small) {
|
||||
.claim-preview--collection-mine {
|
||||
height: unset;
|
||||
|
@ -1230,6 +1234,11 @@ img {
|
|||
display: none;
|
||||
}
|
||||
|
||||
input:-webkit-autofill,
|
||||
input:-webkit-autofill:focus {
|
||||
transition: background-color 600000s 0s, color 600000s 0s;
|
||||
}
|
||||
|
||||
// Remove tap focus on mobile devices
|
||||
input,
|
||||
textarea,
|
||||
|
|
Loading…
Reference in a new issue