Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2020-10-13 17:31:29 +0300
committerMarco Ambrosini <marcoambrosini@pm.me>2020-10-13 17:31:29 +0300
commitee2b7aedd8607ad246a69c327c9436ddb8003a33 (patch)
tree7ef0d335cd66ab0a0aa96c58c70f2cd5dbef0926 /src
parenta5bf19b018e0ba538b2157a67793c097810789e8 (diff)
Fix switch view buttons
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'src')
-rw-r--r--src/components/TopBar/TopBar.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/TopBar/TopBar.vue b/src/components/TopBar/TopBar.vue
index 5b202db73..ceba3eec7 100644
--- a/src/components/TopBar/TopBar.vue
+++ b/src/components/TopBar/TopBar.vue
@@ -39,11 +39,12 @@
{{ layoutHintText }}
<div class="hint__actions">
<button
+ class="hint__button"
@click="showLayoutHint=false, hintDismissed=true">
{{ t('spreed', 'Dismiss') }}
</button>
<button
- class="primary"
+ class="hint__button primary"
@click="changeView">
{{ t('spreed', 'Use speaker view') }}
</button>
@@ -528,6 +529,9 @@ export default {
.hint {
padding: 4px;
text-align: left;
+ &__button {
+ height: $clickable-area;
+ }
&__actions{
display: flex;
justify-content: space-between;