-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Doi):added doi modal to modificaiton and termination requests (#…
…6211) * feat(Doi):added doi modal to modificaiton and termination requests * audit fix --------- Co-authored-by: denbicloud <[email protected]>
- Loading branch information
1 parent
9acafda
commit 4e727fd
Showing
6 changed files
with
84 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.custom-container { | ||
background-color: #f8f9fa; | ||
color: #6c757d; /* secondary text color */ | ||
padding: 20px; | ||
border: 1px solid #dee2e6; | ||
border-radius: .25rem; | ||
box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075); | ||
} | ||
.custom-container .list-item { | ||
margin-bottom: 1rem; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export enum ApplicationRequestType { | ||
Termination = 'Termination', | ||
Modification = 'Modification', | ||
Extension = 'Extension', | ||
} |