Fix extra padding in ConversationHeader

This commit is contained in:
Fedor Indutny 2022-11-28 14:35:20 -08:00 committed by GitHub
parent b720ed7bd5
commit b98836d0b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,12 +55,11 @@
width: 24px; width: 24px;
height: 24px; height: 24px;
min-width: 24px; min-width: 24px;
margin-left: 12px; margin-left: -24px;
transform: translateX(-36px);
vertical-align: text-bottom; vertical-align: text-bottom;
border: none; border: none;
opacity: 0; opacity: 0;
transition: transform $transition, opacity $transition; transition: margin-left $transition, opacity $transition;
&:disabled { &:disabled {
cursor: default; cursor: default;
@ -69,7 +68,7 @@
&--show { &--show {
opacity: 1; opacity: 1;
margin-right: 6px; margin-right: 6px;
transform: translateX(0px); margin-left: 12px;
} }
@include light-theme { @include light-theme {