Fix build issue and remove dead css code

pull/1/head
J M Rossy 2 years ago
parent 6c27b66c3a
commit e460e527b2
  1. 2
      src/components/buttons/ConnectAwareSubmitButton.tsx
  2. 12
      src/styles/globals.css

@ -26,7 +26,7 @@ export function ConnectAwareSubmitButton<FormValues = any>(props: Props) {
Object.keys(touched).length > 0 && Object.keys(errors).length > 0;
const firstError = `${Object.values(errors)[0]}` || 'Unknown error';
const color = hasError ? 'red' : 'beige';
const color = hasError ? 'red' : 'blue';
const text = hasError
? firstError
: isAccountReady

@ -22,7 +22,8 @@ select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23010101'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23010101'><polygon points='0,0 100,0 50,50'/></svg>")
no-repeat;
background-size: 8px;
background-position: 92% 60%;
background-repeat: no-repeat;
@ -132,15 +133,6 @@ Common animations
}
}
/*
Common filters
=================
*/
.filter-full-bright {
filter: brightness(10);
}
/*
Dropdowns
=========

Loading…
Cancel
Save