diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2022-03-07 19:28:38 -0500 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-03-07 19:28:38 -0500 |
| commit | a511250b63b337f4f541a77e57cf6fb7ecbd5d1a (patch) | |
| tree | ec0ca3c3cff6b61019bec7089cda9a2178bde042 /src/components/thread_tree | |
| parent | 415a823af09b61e7ca7adfe295ad3a5eebc5e8b5 (diff) | |
Make $status-margin fallback only
Diffstat (limited to 'src/components/thread_tree')
| -rw-r--r-- | src/components/thread_tree/thread_tree.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/thread_tree/thread_tree.vue b/src/components/thread_tree/thread_tree.vue index a29a5bef..e64455e0 100644 --- a/src/components/thread_tree/thread_tree.vue +++ b/src/components/thread_tree/thread_tree.vue @@ -113,12 +113,12 @@ <style lang="scss"> @import '../../_variables.scss'; .thread-tree-replies { - margin-left: $status-margin; + margin-left: var(--status-margin, $status-margin); border-left: 2px solid var(--border, $fallback--border); } .thread-tree-replies-hidden { - padding: $status-margin; + padding: var(--status-margin, $status-margin); /* Make the button stretch along the whole row */ display: flex; align-items: stretch; |
