forked from wulfsolter/angular2-signaturepad
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding default style and class for canvas for custom styling wulfsolt…
- Loading branch information
1 parent
efbd049
commit 6f6d89f
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
projects/angular-signature-pad/src/lib/angular-signature-pad.component.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,11 @@ | ||
:host { | ||
// This should be solving issue with open area that don't have signature pad canvas | ||
background: antiquewhite; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
.signature-pad-canvas { | ||
border: 1px solid gray; | ||
} | ||
} |
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