File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
apps/remix-ide/src/app/providers/style
libs/remix-ui/grid-view/src/lib Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
.EECellStyle {
2
2
min-height : 6rem ;
3
3
max-width : 12rem ;
4
- min-width : 10 rem ;
4
+ min-width : 12 rem ;
5
5
}
Original file line number Diff line number Diff line change 28
28
width : 1rem ;
29
29
height : 1rem ;
30
30
position : relative;
31
- right : 0.9 rem ;
32
- top : -0 .7rem ;
31
+ right : 2.1 rem ;
32
+ top : 4 .7rem ;
33
33
background : transparent;
34
34
z-index : 1000 ;
35
35
}
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
103
103
tooltipText = { props . titleTooltip ? props . titleTooltip : props . title }
104
104
>
105
105
< label
106
- className = 'm-0 p-0 text-uppercase align-items-left font-weight-bold text-truncate overflow-hidden whitespace-nowra '
106
+ className = 'm-0 p-0 text-uppercase align-items-left font-weight-bold text-truncate overflow-hidden whitespace-nowrap '
107
107
> { props . title }
108
108
</ label >
109
109
</ CustomTooltip >
@@ -113,7 +113,7 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
113
113
</ div >
114
114
</ div >
115
115
{ filterCon . showPin && < button
116
- className = { `${ pinned ? 'fa-circle-check text-dark' : 'fa-circle text-secondary' } ` + ` fa-regular border-0 mb-0 remixui_grid_cell_pin` }
116
+ className = { `${ pinned ? 'fas fa-toggle-on fa-lg text-dark' : 'fas fa-toggle-off fa-lg text-secondary' } ` + ` fa-regular border-0 mb-0 remixui_grid_cell_pin` }
117
117
style = { { fontSize : 'large' } }
118
118
data-id = { `${ pinned ? `${ props . id } -pinned` : `${ props . id } -unpinned` } ` }
119
119
onClick = { async ( ) => {
You can’t perform that action at this time.
0 commit comments