diff --git a/src/assets/main.css b/src/assets/main.css index 540ede3..66f5798 100644 --- a/src/assets/main.css +++ b/src/assets/main.css @@ -27,6 +27,10 @@ main~footer { margin-top: 40px; } +dialog>*>article { + width: unset; +} + article>header { display: flex; align-items: center; diff --git a/src/stories/BaseModal.stories.ts b/src/stories/BaseModal.stories.ts index 3a561af..f81e237 100644 --- a/src/stories/BaseModal.stories.ts +++ b/src/stories/BaseModal.stories.ts @@ -33,11 +33,10 @@ export const DefaultOpened: Story = { // Click the button const button = canvas.getByText("Hello World", { selector: "button" }); await button.click(); + expect(canvas.queryByText("Cancel")).toBeVisible(); // The modal, which is in `article` tag, should be in the middle of the screen const modal = canvas.getByRole("article"); - expect(modal).toBeVisible(); - const modalRect = modal.getBoundingClientRect(); const canvasRect = canvasElement.getBoundingClientRect(); @@ -48,6 +47,13 @@ export const DefaultOpened: Story = { }, }; +export const OverflowingContent: Story = { + args: { + title: "Overflowing Content", + default: `**Welcome to Our Application**Welcome to our application. We are dedicated to providing you with the best experience possible. Our team has worked hard to ensure that our application is user-friendly and packed with features that will meet your needs.**Features and Benefits**Our application offers a wide range of features designed to help you manage your tasks efficiently. You can schedule tasks, set reminders, and even share tasks with others. Plus, our application is accessible from any device, so you can stay organized no matter where you are.**Privacy and Security**Your privacy and security are our top priorities. We use state-of-the-art encryption to protect your data and ensure that your information is safe. We also respect your privacy and will never sell or share your information with third parties.**Getting Started**Getting started with our application is easy. Simply create an account, verify your email, and you're ready to go. If you need help along the way, our support team is available 24/7 to assist you.**Feedback and Support**We value your feedback and are always looking to improve. If you have any suggestions or run into any issues, please don't hesitate to contact our support team. We're here to help and want to make sure you have the best experience possible.**Welcome to Our Application**Welcome to our application. We are dedicated to providing you with the best experience possible. Our team has worked hard to ensure that our application is user-friendly and packed with features that will meet your needs.**Features and Benefits**Our application offers a wide range of features designed to help you manage your tasks efficiently. You can schedule tasks, set reminders, and even share tasks with others. Plus, our application is accessible from any device, so you can stay organized no matter where you are.**Privacy and Security**Your privacy and security are our top priorities. We use state-of-the-art encryption to protect your data and ensure that your information is safe. We also respect your privacy and will never sell or share your information with third parties.**Getting Started**Getting started with our application is easy. Simply create an account, verify your email, and you're ready to go. If you need help along the way, our support team is available 24/7 to assist you.**Feedback and Support**We value your feedback and are always looking to improve. If you have any suggestions or run into any issues, please don't hesitate to contact our support team. We're here to help and want to make sure you have the best experience possible.**Welcome to Our Application**Welcome to our application. We are dedicated to providing you with the best experience possible. Our team has worked hard to ensure that our application is user-friendly and packed with features that will meet your needs.**Features and Benefits**Our application offers a wide range of features designed to help you manage your tasks efficiently. You can schedule tasks, set reminders, and even share tasks with others. Plus, our application is accessible from any device, so you can stay organized no matter where you are.**Privacy and Security**Your privacy and security are our top priorities. We use state-of-the-art encryption to protect your data and ensure that your information is safe. We also respect your privacy and will never sell or share your information with third parties.**Getting Started**Getting started with our application is easy. Simply create an account, verify your email, and you're ready to go. If you need help along the way, our support team is available 24/7 to assist you.**Feedback and Support**We value your feedback and are always looking to improve. If you have any suggestions or run into any issues, please don't hesitate to contact our support team. We're here to help and want to make sure you have the best experience possible.`, + }, +}; + export const MinimumExample: Story = { args: { triggerText: undefined,