summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-09-14 10:31:07 +0200
committerCarl Schwan <carl@carlschwan.eu>2022-09-14 10:31:07 +0200
commitb423ac536c10ff93c56d58f4e3dad0f5f40a1ee9 (patch)
tree33026d551fe368447cb969c56fc71c50a08c54dc /src
parent42309252338d28603b4fc6fec62bc5676a9aeb5f (diff)
Fix issue with dark theme
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'src')
-rw-r--r--src/components/Composer/PreviewGridItem.vue2
-rw-r--r--src/components/TimelinePost.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Composer/PreviewGridItem.vue b/src/components/Composer/PreviewGridItem.vue
index 72c21e2d..c3e4b54e 100644
--- a/src/components/Composer/PreviewGridItem.vue
+++ b/src/components/Composer/PreviewGridItem.vue
@@ -89,7 +89,7 @@ export default {
}
.preview-item {
- border-radius: 4px;
+ border-radius: var(--border-radius-large);
background-color: #000;
background-position: 50%;
background-size: cover;
diff --git a/src/components/TimelinePost.vue b/src/components/TimelinePost.vue
index eb07ff9d..eac39e4d 100644
--- a/src/components/TimelinePost.vue
+++ b/src/components/TimelinePost.vue
@@ -44,7 +44,7 @@
v-tooltip="t('social', 'Boost')"
@click="boost">
<template #icon>
- <Repeat :size="20" :fill-color="isBoosted ? 'blue' : 'black'" />
+ <Repeat :size="20" :fill-color="isBoosted ? 'blue' : 'var(--color-main-text)'" />
</template>
</NcButton>
<NcButton v-if="!isLiked"