responsive adjustments.

pull/4930/head
Joseph Izang 8 months ago committed by Aniket
parent b14c6cd946
commit c0f153da84
  1. 14
      libs/remix-ui/home-tab/src/lib/components/homeTabGetStarted.tsx
  2. 2
      libs/remix-ui/workspace/src/lib/components/file-explorer-menu.tsx
  3. 6
      libs/remix-ui/workspace/src/lib/components/file-explorer.tsx

@ -41,13 +41,6 @@ const workspaceTemplates: WorkspaceTemplate[] = [
projectLogo: 'assets/img/circom.webp',
templateName: 'semaphore',
},
{
gsID: 'sUTLogo',
workspaceTitle: 'Uniswap V4 Basic Hook',
description: 'Create a new MultiSig wallet using this template.',
projectLogo: 'assets/img/gnosissafeLogo.png',
templateName: 'uniswapV4Template',
},
{
gsID: 'sUTLogo',
workspaceTitle: 'ERC20',
@ -55,6 +48,13 @@ const workspaceTemplates: WorkspaceTemplate[] = [
projectLogo: 'assets/img/oxprojectLogo.png',
templateName: 'ozerc20',
},
{
gsID: 'sUTLogo',
workspaceTitle: 'Uniswap V4 Basic',
description: 'Create a new MultiSig wallet using this template.',
projectLogo: 'assets/img/gnosissafeLogo.png',
templateName: 'uniswapV4Template',
},
{
gsID: 'sUTLogo',
workspaceTitle: 'NFT / ERC721',

@ -160,7 +160,7 @@ export const FileExplorerMenu = (props: FileExplorerMenuProps) => {
} else if (action === 'importFromIpfs') {
props.importFromIpfs()
} else if (action === 'importFromHttps') {
props.importFromHttps
props.importFromHttps()
} else {
state.actions[action]()
}

@ -414,4 +414,10 @@ export const FileExplorer = (props: FileExplorerProps) => {
)
}
export const MessageWrapper = () => {
return (
<p>e.g ipfs://QmQQfBMkpDgmxKzYaoAtqfaybzfgGm9b2LWYyT56Chv6xH</p>
)
}
export default FileExplorer

Loading…
Cancel
Save