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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authormarco <marcoambrosini@pm.me>2020-11-03 20:25:27 +0300
committerGitHub <noreply@github.com>2020-11-03 20:25:27 +0300
commit5c933213548103f3a837ccf2befbc9b7cb69a585 (patch)
tree33f648341eaa77fe318cbf35f417d1b046b69031 /core/src
parenta6908b82a999454a05c3d4dc1d84fb6ae8efc0a3 (diff)
parentbfe87e501d83ff4dc9e5057c07464a598d951b4b (diff)
Merge pull request #23798 from nextcloud/add/default_font_size
Add default font size
Diffstat (limited to 'core/src')
-rw-r--r--core/src/components/UnifiedSearch/SearchResult.vue2
-rw-r--r--core/src/views/UnifiedSearch.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/src/components/UnifiedSearch/SearchResult.vue b/core/src/components/UnifiedSearch/SearchResult.vue
index 025ddef86c0..e50cc413d03 100644
--- a/core/src/components/UnifiedSearch/SearchResult.vue
+++ b/core/src/components/UnifiedSearch/SearchResult.vue
@@ -250,7 +250,7 @@ $margin: 10px;
}
&-line-two {
opacity: .7;
- font-size: 14px;
+ font-size: var(--default-font-size);
}
}
diff --git a/core/src/views/UnifiedSearch.vue b/core/src/views/UnifiedSearch.vue
index be33ac8cd8d..b579ce72eb8 100644
--- a/core/src/views/UnifiedSearch.vue
+++ b/core/src/views/UnifiedSearch.vue
@@ -744,7 +744,7 @@ $input-padding: 6px;
::v-deep .empty-content__title {
font-weight: normal;
- font-size: 14px;
+ font-size: var(--default-font-size);
padding: 0 15px;
text-align: center;
}