-
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.
style: add styling to SDK internal error component
- Loading branch information
1 parent
21d72e3
commit 67d019b
Showing
2 changed files
with
46 additions
and
9 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
src/components/Common/InternalError/InternalError.module.scss
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,27 @@ | ||
h1 { | ||
font-size: toRem(21) !important; | ||
} | ||
|
||
.internalErrorCard { | ||
background-color: #fff; | ||
border-right: 1px solid #eaeaea; | ||
border-bottom: 1px solid #eaeaea; | ||
border-left: 1px solid #eaeaea; | ||
box-shadow: | ||
0px 1px 18px rgba(0, 0, 0, 0.08), | ||
inset 0 4px 0 #d5351f; | ||
padding: toRem(20); | ||
display: flex; | ||
flex-direction: column; | ||
gap: toRem(8); | ||
max-width: toRem(600); | ||
margin: 0 auto; | ||
} | ||
|
||
.errorMessage { | ||
font-size: toRem(14); | ||
font-weight: 500; | ||
color: #d5351f; | ||
line-height: normal; | ||
margin-top: toRem(6); | ||
} |
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