diff --git a/demo/index.css b/demo/index.css
index bd820791..8a976e11 100644
--- a/demo/index.css
+++ b/demo/index.css
@@ -17,3 +17,7 @@
color: white !important;
}
}
+
+.wrapper-calendar {
+ @apply w-[550px]
+}
diff --git a/demo/index.html b/demo/index.html
index 0c6370f0..29a96adf 100644
--- a/demo/index.html
+++ b/demo/index.html
@@ -5,7 +5,7 @@
Vanilla Calendar - A pure JavaScript date and time picker using TypeScript so it supports any JS framework and library.
-
+
diff --git a/demo/main.ts b/demo/main.ts
index 4aefb6b1..b1a3e281 100644
--- a/demo/main.ts
+++ b/demo/main.ts
@@ -7,13 +7,12 @@ import VanillaCalendar from '@/package/src/scripts/vanilla-calendar';
import IVanillaCalendar, { Options } from '@/package/src';
const config: Options = {
- type: 'multiple',
- // settings: {
- // selected: {
- // month: 3,
- // year: 2023,
- // },
- // },
+ settings: {
+ selected: {
+ month: 3,
+ year: 2023,
+ },
+ },
};
document.addEventListener('DOMContentLoaded', () => {
diff --git a/demo/pages/multiple/index.html b/demo/pages/multiple/index.html
index 3d457983..0de7d004 100644
--- a/demo/pages/multiple/index.html
+++ b/demo/pages/multiple/index.html
@@ -12,6 +12,8 @@
A pure JavaScript date and time picker using TypeScript so it supports any JS framework and library.
-
+