diff --git a/env.json b/env.json index df6b2593e..c2af9f9ca 100644 --- a/env.json +++ b/env.json @@ -15,7 +15,7 @@ "soraCard": false, "orderBook": false }, - "SUBQUERY_ENDPOINT": "https://api.subquery.network/sq/sora-xor/sora-prod-sub4", + "SUBQUERY_ENDPOINT": "https://api.subquery.network/sq/sora-xor/sora-prod", "SUBSQUID_ENDPOINT": "", "DEFAULT_NETWORKS": [ { diff --git a/package.json b/package.json index 01070ec9b..1ec070c9d 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ }, "dependencies": { "@metamask/detect-provider": "^2.0.0", - "@soramitsu/soraneo-wallet-web": "1.29.4", + "@soramitsu/soraneo-wallet-web": "1.29.7", "@walletconnect/ethereum-provider": "^2.11.0", "@walletconnect/modal": "^2.6.2", "core-js": "^3.33.2", @@ -52,8 +52,8 @@ "@types/jsdom": "^21.1.3", "@types/lodash": "^4.14.199", "@types/node": "^20.8.4", - "@typescript-eslint/eslint-plugin": "^5.2.0", - "@typescript-eslint/parser": "^5.2.0", + "@typescript-eslint/eslint-plugin": "^5.62.0", + "@typescript-eslint/parser": "^5.62.0", "@vue/cli-plugin-babel": "5.0.8", "@vue/cli-plugin-e2e-cypress": "5.0.8", "@vue/cli-plugin-eslint": "5.0.8", diff --git a/src/App.vue b/src/App.vue index 493844371..81c282ffe 100644 --- a/src/App.vue +++ b/src/App.vue @@ -553,9 +553,12 @@ i.icon-divider { } .app-main--orderbook { - .app-menu { - position: absolute; - right: initial; + @include large-mobile { + .app-menu { + // TODO: [Rustem] fix shadow issues between menu and orderbook + position: absolute; + right: initial; + } } .app-content { diff --git a/src/components/pages/OrderBook/BuySell.vue b/src/components/pages/OrderBook/BuySell.vue index a38617190..10bef3fe2 100644 --- a/src/components/pages/OrderBook/BuySell.vue +++ b/src/components/pages/OrderBook/BuySell.vue @@ -965,7 +965,8 @@ export default class BuySellWidget extends Mixins(TranslationMixin, mixins.Forma .order-book-choose-pair { width: 100%; - background: var(--base-day-background, #f4f0f1); + background: var(--s-color-base-background); + box-shadow: var(--s-shadow-element); border-radius: var(--s-border-radius-small); margin-bottom: $inner-spacing-mini; padding: 10px $basic-spacing; @@ -974,12 +975,6 @@ export default class BuySellWidget extends Mixins(TranslationMixin, mixins.Forma cursor: pointer; } } - -[design-system-theme='dark'] { - .order-book-choose-pair { - background: var(--s-color-base-background); - } -}