dont default to fill or hide overflow

This commit is contained in:
2023-01-26 11:36:19 +10:00
parent 67f2c2969b
commit 704491589c

View File

@@ -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;
}