-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release- bug fixes, Marketplace POC (#563)
* Fix fuul crashing the app * lint cleanup * Bolts page (#521) * scaffold bolts page * fix input on mobile * Fix stroke-width * setup quest blocks * cleanup blocks * Fetching fuul data * cleanup * lint * Marketplace: Data Fetching (#518) * marketplace data fetching * fixed * listings data * data * all data * account flag * fix array * fixes * cleanup (#529) * add fuul sendPageview * fix bolts page styles (#531) * Issue #451. HAI warning Banner (#516) * banner for hai user * prettier * make height fixed and border-bottom * height 60 * Issue #510. Marketplace: NFV Listing Card (#527) * header * fix id * add cards component * basic data and styles * card right side style * data we need * Add Table Co-authored-by: Iana <[email protected]> * basic styles * clean up * mock data * change background * add image column * cleanup * cleanup * hook everything up * fix svg size * fix svg size * data fetchingf * Add subgraph query * hooked up with most data * fix * fix * liq data * got all data * add dollar size * add scroll * scale svg and headers one line * fix table ids * mobile fixes * Update titles * styling mobile changes * add filtering, sorting * svg change * svg center * ui tweaks --------- Co-authored-by: Patrick Gallagher <[email protected]> Co-authored-by: Iana <[email protected]> Co-authored-by: jahabeebs <[email protected]> Co-authored-by: Sero <[email protected]> * index.html * cleanup * Issue #541: Redundant fetchAnalyticsData (#545) * useAnalyticsData * more useAnalyticsData refactoring * Issue #409: Reduce redundant RPC calls (#554) * remove initgeb, fix unneeded step2 setting, fix invalid bn error * memoize * more fixes * change sidenote color and fweight (#558) --------- Co-authored-by: Sero <[email protected]> Co-authored-by: Jacob Habib <[email protected]> Co-authored-by: Iana <[email protected]> Co-authored-by: Iana <[email protected]> Co-authored-by: jahabeebs <[email protected]>
- Loading branch information
1 parent
2288d77
commit cefbb01
Showing
44 changed files
with
1,425 additions
and
420 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import styled from 'styled-components' | ||
|
||
const ToastBannerNetwork = () => { | ||
return ( | ||
<Container> | ||
<Text> | ||
NOTE: This UI is provided as a convenience for HAI users. Open Dollar makes no guarantees of service. | ||
</Text> | ||
</Container> | ||
) | ||
} | ||
|
||
export default ToastBannerNetwork | ||
|
||
const Container = styled.div` | ||
display: flex; | ||
align-items: center; | ||
padding: 10px 15px; | ||
background-color: #1a74ec; | ||
border-bottom: 3px solid white; | ||
height: 60px; | ||
` | ||
|
||
const Text = styled.div<{ color?: string }>` | ||
font-size: ${(props) => props.theme.font.small}; | ||
color: ${(props) => (props.color ? props.color : props.theme.colors.neutral)}; | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.