Make $status-margin fallback only

This commit is contained in:
Tusooa Zhu 2022-03-07 19:28:38 -05:00
parent 415a823af0
commit a511250b63
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
4 changed files with 15 additions and 19 deletions

View file

@ -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;