We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b02fc commit b56ba92Copy full SHA for b56ba92
kolibri/core/assets/src/views/language-switcher/index.vue
@@ -1,8 +1,8 @@
1
<template>
2
3
<div>
4
- <div class="page-footer">
5
- <div class="lang-container">
+ <div v-if="footer" class="page-footer">
+ <div class="lang-container" :style="isMobile ? { width: '40%' } : {}">
6
<p class="prompt" v-if="!isMobile">{{ $tr('changeLanguagePrompt') }}</p>
7
<p v-for="language in footerLanguageOptions" :class="selectedLanguage.code===language.code ? 'selected' : 'choice'" @click="setAndSwitchLanguage(language)">
8
{{ language.name }}
@@ -156,7 +156,6 @@
156
padding-bottom: 16px
157
.lang-container
158
display: inline-block
159
- width: 40%
160
p
161
float: left
162
padding-left: 10px
0 commit comments