From 9c0cbd8556f2356f9a28d6c83700607408773882 Mon Sep 17 00:00:00 2001 From: Alex Windett Date: Mon, 6 Feb 2017 15:30:10 +0000 Subject: [PATCH] setting a width for columns without delcared props --- ui/src/components/column/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/src/components/column/index.js b/ui/src/components/column/index.js index 5602110f..252f0f52 100644 --- a/ui/src/components/column/index.js +++ b/ui/src/components/column/index.js @@ -64,6 +64,9 @@ module.exports = styled.div` box-sizing: border-box; padding-left: ${padding}; padding-right: ${padding}; + + // If no column size is passed, make it full width + width: 100%; ${flexed` flex: 0 0 auto;