MM-51912 - fix not able to scroll in the LHS (#22806)

Этот коммит содержится в:
Pablo Andrés Vélez Vidal
2023-04-04 11:39:40 +02:00
коммит произвёл GitHub
родитель 3d8701058a
Коммит bbadbfde45
3 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@@ -54,7 +54,6 @@ exports[`SidebarList should match snapshot 1`] = `
renderView={[Function]}
style={
Object {
"overflow": "initial",
"position": "absolute",
}
}

Просмотреть файл

@@ -69,7 +69,7 @@ export function renderThumbVertical(props: any) {
);
}
const scrollbarStyles: CSSProperties = {position: 'absolute', overflow: 'initial'};
const scrollbarStyles: CSSProperties = {position: 'absolute'};
type Props = {
currentTeam: Team;

Просмотреть файл

@@ -578,7 +578,6 @@ $sidebarOpacityAnimationDuration: 0.15s;
@media screen and (min-width: 768px) {
.SidebarNavContainer {
.scrollbar--view {
overflow: initial !important;
max-width: 240px;
}
}
@@ -754,7 +753,7 @@ $sidebarOpacityAnimationDuration: 0.15s;
}
.AddChannelsCtaDropdown .dropdown-menu {
min-width: 232px !important;
min-width: 210px !important;
margin-left: 20px;
}