Skip to content

Commit

Permalink
Merge pull request #847 from sharetribe/fix-modalmissinginformation-s…
Browse files Browse the repository at this point in the history
…tyles

Styles were not copied in previous PR
  • Loading branch information
Gnito committed May 25, 2018
2 parents f362e58 + 6cee3a7 commit f4840ce
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
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;
}

0 comments on commit f4840ce

Please sign in to comment.