diff --git a/assets/css/app.scss b/assets/css/app.scss index 0c51dc3..606e2f5 100644 --- a/assets/css/app.scss +++ b/assets/css/app.scss @@ -1190,6 +1190,8 @@ footer[role="tools"]{ &>*{ // disable grid gap padding-right: 0; + flex-grow: 0; + flex-shrink: 0; } #footer-tabs{ ul{ @@ -1332,6 +1334,18 @@ footer[role="tools"]{ } } } + ; + #logos{ + box-sizing: content-box; + max-height: 50px; + padding:1em; + text-align: right; + img{ + display: inline-block; + max-height: 100%; + padding-left: 1em; + } + } } h2{ margin:0; diff --git a/src/App.vue b/src/App.vue index ee83352..eefc6f2 100644 --- a/src/App.vue +++ b/src/App.vue @@ -24,6 +24,14 @@ @@ -58,7 +66,8 @@ export default { computed: { ...mapState({ resultsOpened: state => state.Search.opened, - editionslist: state => state.Corpus.editionslist + editionslist: state => state.Corpus.editionslist, + searchResults: state => state.Corpus.results }) }, created () { diff --git a/src/components/nav/Search.vue b/src/components/nav/Search.vue index 876d445..e07552d 100644 --- a/src/components/nav/Search.vue +++ b/src/components/nav/Search.vue @@ -1,7 +1,7 @@