Skip to content

Commit

Permalink
fix: centered modal, added test for center
Browse files Browse the repository at this point in the history
  • Loading branch information
mwargan committed Mar 7, 2024
1 parent 04b51da commit 18632c4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ main~footer {
margin-top: 40px;
}

dialog>*>article {
width: unset;
}

article>header {
display: flex;
align-items: center;
Expand Down
10 changes: 8 additions & 2 deletions src/stories/BaseModal.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand All @@ -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,
Expand Down

0 comments on commit 18632c4

Please sign in to comment.