MM-54261: re-scope css to intended target (#24396)

This commit is contained in:
Caleb Roseland 2023-08-29 14:58:52 -05:00 committed by GitHub
parent f35291169c
commit dbb39e44cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
exports[`components/post_edit_history should display error screen if errors are present 1`] = ` exports[`components/post_edit_history should display error screen if errors are present 1`] = `
<div> <div>
<div <div
class="sidebar-right__body" class="sidebar-right__body sidebar-right__edit-post-history"
id="rhsContainer" id="rhsContainer"
> >
<div <div
@ -118,7 +118,7 @@ exports[`components/post_edit_history should display error screen if errors are
exports[`components/post_edit_history should match snapshot 1`] = ` exports[`components/post_edit_history should match snapshot 1`] = `
<div> <div>
<div <div
class="sidebar-right__body" class="sidebar-right__body sidebar-right__edit-post-history"
id="rhsContainer" id="rhsContainer"
> >
<div <div

View File

@ -1,4 +1,4 @@
.scrollbar--view { .sidebar-right__edit-post-history .scrollbar--view {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }

View File

@ -107,7 +107,7 @@ const PostEditHistory = ({
return ( return (
<div <div
id='rhsContainer' id='rhsContainer'
className='sidebar-right__body' className='sidebar-right__body sidebar-right__edit-post-history'
> >
<LoadingScreen <LoadingScreen
style={{ style={{
@ -138,7 +138,7 @@ const PostEditHistory = ({
return ( return (
<div <div
id='rhsContainer' id='rhsContainer'
className='sidebar-right__body' className='sidebar-right__body sidebar-right__edit-post-history'
> >
<Scrollbars <Scrollbars
ref={scrollbars} ref={scrollbars}