diff --git a/docs/components/app/AppLayout.vue b/docs/components/app/AppLayout.vue index 6d13cfc2ac..18b862f46e 100644 --- a/docs/components/app/AppLayout.vue +++ b/docs/components/app/AppLayout.vue @@ -2,7 +2,7 @@
-
+
@@ -33,6 +33,11 @@ export default defineComponent({ computed: { layout () { return this.$docus.layout.value + }, + containerClass () { + if (this.layout.aside && this.layout.fluid) { return 'd-container-fluid' } + if (this.layout.aside) { return 'd-container' } + return '' } } }) diff --git a/docs/components/atoms/Sandbox.vue b/docs/components/atoms/Sandbox.vue new file mode 100644 index 0000000000..4186b04149 --- /dev/null +++ b/docs/components/atoms/Sandbox.vue @@ -0,0 +1,107 @@ +