Skip to content

Commit

Permalink
add prefix for resizableButton
Browse files Browse the repository at this point in the history
Signed-off-by: tygao <[email protected]>
  • Loading branch information
raintygao committed Mar 14, 2024
1 parent a6027a7 commit 23223c6
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

.resizableButton {
.sidecar-resizableButton {
position: relative;
flex-shrink: 0;
z-index: $euiZLevel1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const MIN_SIDECAR_SIZE = 350;
export const ResizableButton = ({ dockedMode, onResize, flyoutSize }: Props) => {
const isHorizontal = dockedMode !== SIDECAR_DOCKED_MODE.TAKEOVER;

const classes = classNames('resizableButton', {
const classes = classNames('sidecar-resizableButton', {
'resizableButton--vertical': !isHorizontal,
'resizableButton--horizontal': isHorizontal,
});
Expand Down

0 comments on commit 23223c6

Please sign in to comment.