compensate for reply indicator width
This commit is contained in:
parent
cf4446829e
commit
1c69563b10
1 changed files with 10 additions and 4 deletions
|
|
@ -126,20 +126,26 @@
|
|||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.end-spacer {
|
||||
flex: 1 1 0;
|
||||
min-width: calc(2.2rem + 0.5rem + 2rem);
|
||||
}
|
||||
|
||||
.reply-indicator {
|
||||
display: flex;
|
||||
place-items: center;
|
||||
place-content: center;
|
||||
padding: 0.25em;
|
||||
width: 1em;
|
||||
margin: var(--roundness) 0;
|
||||
background: var(--border);
|
||||
border-radius: var(--roundness);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.end-spacer {
|
||||
flex: 1 1 0;
|
||||
min-width: calc(2.2em + 0.5em + 2em);
|
||||
+ .end-spacer {
|
||||
// Compensate for reply indicator
|
||||
min-width: calc(2.2rem + 0.5rem + 2rem - (1rem + (1px + 0.25rem) * 2));
|
||||
}
|
||||
}
|
||||
|
||||
&.-incoming {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue