mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-26 07:59:48 +03:00
actionListRows
This commit is contained in:
parent
ff256788e5
commit
c290c3bb47
|
@ -23,6 +23,7 @@ import ActionListRow from './ActionListRow';
|
|||
import ActionListHeader from './ActionListHeader';
|
||||
import {
|
||||
actionListCss,
|
||||
actionListRowsCss,
|
||||
actionListWideCss,
|
||||
} from './utils/createStylingFromTheme';
|
||||
|
||||
|
@ -168,7 +169,7 @@ export default function ActionList<A extends Action<string>>({
|
|||
/>
|
||||
<div
|
||||
data-testid="actionListRows"
|
||||
{...styling('actionListRows')}
|
||||
css={actionListRowsCss}
|
||||
ref={setNodeRef}
|
||||
>
|
||||
<DndContext
|
||||
|
|
|
@ -99,11 +99,9 @@ export const actionListHeaderCss: Interpolation<Theme> = (theme) => ({
|
|||
borderColor: colorMap(theme).LIST_BORDER_COLOR,
|
||||
});
|
||||
|
||||
const getSheetFromColorMap = (map: ColorMap) => ({
|
||||
actionListRows: {
|
||||
overflow: 'auto',
|
||||
},
|
||||
export const actionListRowsCss = css({ overflow: 'auto' });
|
||||
|
||||
const getSheetFromColorMap = (map: ColorMap) => ({
|
||||
actionListHeaderSelector: {
|
||||
display: 'inline-flex',
|
||||
'margin-right': '10px',
|
||||
|
|
Loading…
Reference in New Issue
Block a user