Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

center_buttons property not centering buttons in latest build #32

Closed
LukeSavefrogs opened this issue Mar 28, 2020 · 3 comments
Closed

Comments

@LukeSavefrogs
Copy link

Problem

Buttons don't center even if center_buttons is set in the configuration object for Zebra_Dialog

Description

The problem is in the latest minified css at line 55-57 (not minified):
image

As you can see in the next Screenshot, the ZebraDialog_Buttons class is on the same element as ZebraDialog_Buttons_Centered class:

image

FIX

To fix it, remove the extra space between the two classes on line 55

Before:

.ZebraDialog_Buttons_Centered .ZebraDialog_Buttons {
    text-align: center
}

After:

.ZebraDialog_Buttons_Centered.ZebraDialog_Buttons {
       text-align: center
}
@stefangabos
Copy link
Owner

Thank you!

@LukeSavefrogs
Copy link
Author

Thank you!

Thank you for the quick reply 😁

Do you know when will the fixed version be released on the cdn?

@stefangabos
Copy link
Owner

done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants