File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed
src/dashboard/Data/Config Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ import TableHeader from 'components/Table/TableHeader.react';
2121import TableView from 'dashboard/TableView.react' ;
2222import Toolbar from 'components/Toolbar/Toolbar.react' ;
2323import browserStyles from 'dashboard/Data/Browser/Browser.scss' ;
24+ import configStyles from 'dashboard/Data/Config/Config.scss' ;
2425import { CurrentApp } from 'context/currentApp' ;
2526import Modal from 'components/Modal/Modal.react' ;
2627import equal from 'fast-deep-equal' ;
@@ -276,8 +277,11 @@ class Config extends TableView {
276277 </ td >
277278 < td style = { columnStyleAction } >
278279 { type === 'Array' && (
279- < a onClick = { ( ) => this . openAddEntryDialog ( data . param ) } >
280- < Icon width = { 16 } height = { 16 } name = "plus-solid" />
280+ < a
281+ className = { configStyles . actionIcon }
282+ onClick = { ( ) => this . openAddEntryDialog ( data . param ) }
283+ >
284+ < Icon width = { 12 } height = { 12 } name = "plus-solid" />
281285 </ a >
282286 ) }
283287 </ td >
Original file line number Diff line number Diff line change 1+ @import ' stylesheets/globals.scss' ;
2+
3+ .actionIcon {
4+ display : inline-flex ;
5+ align-items : center ;
6+ justify-content : center ;
7+ width : 20px ;
8+ height : 20px ;
9+ border-radius : 50% ;
10+ background-color : $lightBlue ;
11+
12+ svg {
13+ fill : $darkBlue ;
14+ }
15+ }
16+
You can’t perform that action at this time.
0 commit comments