File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
assets/src/dashboard/parts/connected Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ const OptimizationStatus = ({ settings }) => {
23
23
24
24
return (
25
25
< div className = "bg-white flex flex-col text-gray-700 border-0 rounded-lg shadow-md p-8" >
26
- < h3 className = "text-base m-0" > { optimoleDashboardApp . strings . optimization_status . title } </ h3 >
27
- < ul >
26
+ < h3 className = "text-base m-0 mb-4 " > { optimoleDashboardApp . strings . optimization_status . title } </ h3 >
27
+ < ul className = "grid gap-3 m-0" >
28
28
{ statuses . map ( ( status , index ) => {
29
29
let statusClass = status . active ? 'success' : 'danger' ;
30
30
return (
@@ -49,7 +49,7 @@ const OptimizationStatus = ({ settings }) => {
49
49
} ) }
50
50
</ ul >
51
51
< p
52
- className = "m-0 mt-3 "
52
+ className = "m-0 mt-5 "
53
53
dangerouslySetInnerHTML = { {
54
54
__html : optimoleDashboardApp . strings . optimization_tips
55
55
} }
Original file line number Diff line number Diff line change @@ -1987,7 +1987,7 @@ private function get_dashboard_strings() {
1987
1987
'optimization_tips ' => sprintf (
1988
1988
/* translators: 1 is the opening anchor tag, 2 is the closing anchor tag */
1989
1989
__ ( '%1$sView all optimization tips%2$s ' , 'optimole-wp ' ),
1990
- '<a class="flex justify-center font-bold rounded hover:opacity-90 transition-opacity " href="https://docs.optimole.com/article/2238-optimization-tips" target="_blank"> ' ,
1990
+ '<a class="flex justify-center items-center font-semibold " href="https://docs.optimole.com/article/2238-optimization-tips" target="_blank"> ' ,
1991
1991
'<span style="text-decoration:none; font-size:15px; margin-top:2px;" class="dashicons dashicons-external"></span></a> '
1992
1992
),
1993
1993
];
You can’t perform that action at this time.
0 commit comments