diff --git a/assets/less/include/layout.less b/assets/less/include/layout.less index a29dc602..d1d06ad7 100644 --- a/assets/less/include/layout.less +++ b/assets/less/include/layout.less @@ -55,6 +55,9 @@ .u-cell--2-3 { width: 66.6666%;} .u-cell--order-2 {order: 2;} .u-cell--align-center {align-self: center;} +@media (max-width: @breakpoint-large-down) { + .u-cell--large-down--order-minus {order: -1;} +} @media (min-width: @breakpoint-small-up) { .u-cell--small--1-2 {width: 50%;} .u-cell--small--1-3 {width: 33.3333%;} diff --git a/assets/variables.js b/assets/variables.js index 1757738a..3293e7c6 100644 --- a/assets/variables.js +++ b/assets/variables.js @@ -78,7 +78,7 @@ export const HUB_CHAIN_ID = { }; /** - * @typedef {{coinSymbol: string, name: string, chainId: number, apiUrl: string, explorerHost: string}} HubChainDataItem + * @typedef {{coinSymbol: string, name: string, shortName: string, chainId: number, apiUrl: string, explorerHost: string}} HubChainDataItem */ /** @@ -88,13 +88,15 @@ export const HUB_CHAIN_ID = { export const HUB_CHAIN_DATA = { [HUB_CHAIN_ID.ETHEREUM]: { name: 'Ethereum', + shortName: 'Ethereum', coinSymbol: 'ETH', chainId: ETHEREUM_CHAIN_ID, apiUrl: ETHEREUM_API_URL, explorerHost: ETHERSCAN_HOST, }, [HUB_CHAIN_ID.BSC]: { - name: 'BSC', + name: 'Binance Smart Chain', + shortName: 'BSC', coinSymbol: 'BNB', chainId: BSC_CHAIN_ID, apiUrl: BSC_API_URL, diff --git a/components/HubCoinList.vue b/components/HubCoinList.vue index 09733df8..2bfa5f2a 100644 --- a/components/HubCoinList.vue +++ b/components/HubCoinList.vue @@ -126,11 +126,11 @@ function getPriceFromList(list, name) { {{ $td('Tokens', 'hub.coin-table-name-mobile') }}
- {{ $td('Send coins from other network to Minter', 'hub.deposit-description') }} + {{ $td(`Send coins from ${chainId ? getEvmNetworkName(chainId) : 'other network'} to Minter`, 'hub.deposit-description', {network: getEvmNetworkName(chainId)}) }}