kgabryje commented on code in PR #22474:
URL: https://github.com/apache/superset/pull/22474#discussion_r1065856926


##########
superset-frontend/src/dashboard/components/gridComponents/Column.jsx:
##########
@@ -58,6 +59,50 @@ const propTypes = {
 
 const defaultProps = {};
 
+const ColumnStyles = styled.div`
+  &.grid-column {
+    width: 100%;
+    position: relative;
+
+    & > :not(.hover-menu):not(:last-child) {
+      margin-bottom: ${({ theme }) => theme.gridUnit * 4}px;
+    }
+  }
+
+  &.grid-column--empty {
+    min-height: ${({ theme }) => theme.gridUnit * 25}px;
+
+    &:before {
+      content: 'Empty column';

Review Comment:
   Same in `Row`'s component `'Empty row`. I'll try to do it in this PR, if it 
turns out to be a larger refactor let's address it in a separate PR



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to