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

Styles were not copied in previous PR #847

Merged
merged 2 commits into from
May 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ way to update this template, but currently, we follow a pattern:

* [fix] Extract and fix missing information reminder modal from Topbar
[#846](https://github.com/sharetribe/flex-template-web/pull/846)
* [fix] Add missing styles for ModalMissingInformation from Topbar
[#847](https://github.com/sharetribe/flex-template-web/pull/847)

## v0.3.1

Expand Down
44 changes: 44 additions & 0 deletions src/components/ModalMissingInformation/ModalMissingInformation.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,47 @@
@import '../../marketplace.css';

.root {
/* Adding empty .root class to enforce className overwrite */
}

/* Title of the modal */
.modalTitle {
@apply --marketplaceModalTitleStyles;
}

/* Paragraph for the Modal */
.modalMessage {
@apply --marketplaceModalParagraphStyles;
}

/* Make the email pop */
.email {
@apply --marketplaceModalHighlightEmail;
}

.helperLink {
@apply --marketplaceModalHelperLink;
}

.helperText {
@apply --marketplaceModalHelperText;
}

.error {
@apply --marketplaceModalErrorStyles;
}

.bottomWrapper {
@apply --marketplaceModalBottomWrapper;

/* Align the helper links to the left since there isn't a Primary Button anymore */
text-align: left;
}

.modalIcon {
@apply --marketplaceModalIconStyles;
}

.reminderModalLinkButton {
@apply --marketplaceButtonStylesPrimary;
}