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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan C. Borchardt <hey@jancborchardt.net>2022-09-06 20:08:12 +0300
committerGitHub <noreply@github.com>2022-09-06 20:08:12 +0300
commitb39a61a392247631703a3ee4629089dbc2aff692 (patch)
treea40d76ac8cfc0b18a096ec9ca684830b15c25df5
parent318b01308ec42e8ebfea51d45f997a730ddba02d (diff)
Move from box-shadow to border for threadsdesign/threads
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
-rw-r--r--src/components/ThreadEnvelope.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ThreadEnvelope.vue b/src/components/ThreadEnvelope.vue
index 07c0e749b..423008e5e 100644
--- a/src/components/ThreadEnvelope.vue
+++ b/src/components/ThreadEnvelope.vue
@@ -463,15 +463,15 @@ export default {
.envelope {
display: flex;
flex-direction: column;
- box-shadow: 0 0 10px var(--color-box-shadow);
+ border: 2px solid var(--color-border);
border-radius: 16px;
margin-left: 10px;
margin-right: 10px;
background-color: var(--color-main-background);
- padding-bottom: 20px;
+ padding-bottom: 28px;
& + .envelope {
- margin-top: -20px;
+ margin-top: -28px;
}
&:last-of-type {