Left Pane search bar width

This commit is contained in:
Vincent 2020-01-16 15:09:28 +11:00
parent a64a34edcb
commit c6f9ab9743
4 changed files with 20 additions and 6 deletions

View File

@ -710,7 +710,7 @@
text-align: center;
background-color: $color-light-35;
border: none;
box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 3px 5px 0px rRgba(0, 0, 0, 0.2);
outline: none;
&:hover {

View File

@ -1141,6 +1141,22 @@ input {
text-align: center;
}
}
}
}
button.module-scroll-down {
&__button {
background-color: $session-shade-6;
}
&__button:hover{
&__icon {
transition: $session-transition-duration;
@include color-svg('../images/down.svg', $session-color-white);
}
}
&__icon {
@include color-svg('../images/down.svg', rgba($session-color-white, 0.6));
}
}

View File

@ -242,13 +242,11 @@ $session-compose-margin: 20px;
.session-search-input {
height: $session-search-input-height;
width: 100%;
margin-right: 1px;
margin-bottom: 10px;
background: $session-shade-4;
color: $session-color-white;
display: inline-flex;
flex-shrink: 0;
.session-icon-button {
margin: auto 10px;

View File

@ -25,7 +25,7 @@ export class SessionConfirm extends React.Component<Props> {
closeTheme: SessionButtonColor.Primary,
hideCancel: false,
};
\
constructor(props: any) {
super(props);
}