From 704491589cf8b8781e92b0035cbe855f5bdc72e7 Mon Sep 17 00:00:00 2001 From: James Collins Date: Thu, 26 Jan 2023 11:36:19 +1000 Subject: [PATCH] dont default to fill or hide overflow --- resources/js/components/SMColumn.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/js/components/SMColumn.vue b/resources/js/components/SMColumn.vue index b00aeb3..3e6eaff 100644 --- a/resources/js/components/SMColumn.vue +++ b/resources/js/components/SMColumn.vue @@ -10,7 +10,7 @@ const props = defineProps({ fill: { type: Boolean, - default: true, + default: false, }, width: { type: String, @@ -31,7 +31,6 @@ if (props.width != "") { .column { display: flex; margin: map-get($spacer, 2); - overflow: hidden; flex-direction: column; }