Skip to content

Commit

Permalink
added css file
Browse files Browse the repository at this point in the history
  • Loading branch information
LianaHus authored and Aniket-Engg committed Jul 16, 2024
1 parent d9fecec commit f657828
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.EECellStyle {
min-height: 4rem;
max-width: 10rem;
min-width: 9rem;
max-height: 5rem;
}
2 changes: 1 addition & 1 deletion libs/remix-ui/grid-view/src/lib/remix-ui-grid-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const hasChildCell = (children: ReactNode): boolean => {
if (found) return

if (isElement(child)) {
if (child.props.classList === 'EECellStyle' && child.props.isValidElement) {
if (child.props.classList === 'EECellStyle') {
found = true
console.log('found ', child.props.className)
return
Expand Down

0 comments on commit f657828

Please sign in to comment.