-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FP-990 & FP-1255: Update <IntroMessage> to Use Dismissible <SectionMe…
…ssage> (#616) * FP-990: Fix bug of info Message missing X button @swillrich5 found and fixed this bug. I replicate the fix so I can test my FP-990 solution. * FP-990: Add some examples for SectionMessage usage * FP-990: <Message type=scope>, not <SectionMessage> I couldn't figure out how to use `<Sectionmessage>` to achieve FP-990. * FP-990: Fix failing ManageAccount test * FP-990: (CSS) Separate SectionMessage form content * chore(lint): run prettier:fix * FP-990: Fix Ability to Dimiss SectionMessages * Quick: Fix IntroMessage Spacing (simple cause during migration to vite) * Quick: In IntroMessage Use SectionMessage * Quick: Update Message Components JSDocs * FP-990: More Fix Ability to Dimiss SectionMessages * chore(prettier): "fix" whitespace * FP-990: New Colors for Info Messages I know I break no other styles because only Message...css used these. * FP-1255: Fix bug that has not manifested * fix(fp-990): use const not let * fix(fp-990): remove leftover setting of onDismiss * fix(fp-990): undefine props w/out new unused vars Set props undefined, instead of removing and creating two unsued vars. * fix(fp-990): prettier fix Co-authored-by: Sal Tijerina <r.sal.tijerina@gmail.com>
- Loading branch information
1 parent
5adcb06
commit b8bf18b
Showing
10 changed files
with
92 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
client/src/components/_common/IntroMessage/IntroMessage.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.root { | ||
/* To replicate margin that is unset by `<Message>` */ | ||
/* HACK: Overwrite spacing that was removed */ | ||
/* FP-1227: Standardize Message margin and do not hack here */ | ||
margin: var(--global-space--section-top) 0 !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters