Skip to content
This repository was archived by the owner on Jan 26, 2024. It is now read-only.

Commit 96e9e22

Browse files
committed
cache update / new logo
1 parent e53a05c commit 96e9e22

File tree

5 files changed

+37
-5
lines changed

5 files changed

+37
-5
lines changed

core/modules/initCacheStorage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ export function initCacheStorage(key, localised = true) {
88
const storeView = currentStoreView()
99
const dbNamePrefix = storeView.storeCode ? storeView.storeCode + '-' : ''
1010
const config = rootStore.state.config
11-
const cacheDriver = config.localForage && config.localForage.defaultDrivers['orders'] ?
12-
config.localForage.defaultDrivers['orders'] :
11+
const cacheDriver = config.localForage && config.localForage.defaultDrivers[key] ?
12+
config.localForage.defaultDrivers[key] :
1313
'LOCALSTORAGE'
1414

1515
if (localised) {
12.8 KB
Loading
2.6 KB
Loading

src/themes/default/assets/logo.svg

Lines changed: 33 additions & 1 deletion
Loading

src/themes/default/components/core/blocks/Header/Header.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<div class="col-xs-2 visible-xs">
2020
<search-icon class="p15 icon pointer" />
2121
</div>
22-
<div class="col-sm-4 col-xs-4 center-xs">
22+
<div class="col-sm-4 col-xs-4 center-xs pt5">
2323
<div>
24-
<logo width="36px" height="41px"/>
24+
<logo width="auto" height="41px"/>
2525
</div>
2626
</div>
2727
<div class="col-xs-2 visible-xs">

0 commit comments

Comments
 (0)