File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
src/cloud/components/DashboardPage Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -70,12 +70,14 @@ const AddSmartViewModal = ({
70
70
onClick = { ( ) => setSelectedViewType ( viewType ) }
71
71
>
72
72
< Flexbox justifyContent = 'center' >
73
+ < div className = 'smartview__header' >
73
74
{ icon != null && (
74
- < Icon path = { icon } className = 'smartview__icon' />
75
+ < Icon path = { icon } size = { 26 } className = 'smartview__icon' />
75
76
) }
76
77
< strong className = 'smartview__name' >
77
78
{ capitalize ( viewType ) }
78
79
</ strong >
80
+ </ div >
79
81
</ Flexbox >
80
82
< p className = 'smartview__description' > { desc } </ p >
81
83
</ Button >
@@ -88,6 +90,10 @@ const AddSmartViewModal = ({
88
90
}
89
91
90
92
const ViewTypeSelectorContainer = styled . div `
93
+ .smartview__header {
94
+ margin-top: ${ ( { theme } ) => theme . sizes . spaces . df } px;
95
+ display: flex;
96
+ }
91
97
.smartview__icon {
92
98
margin-right: ${ ( { theme } ) => theme . sizes . spaces . sm } px;
93
99
}
You can’t perform that action at this time.
0 commit comments