-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial "tags and labels" content
- Loading branch information
Showing
9 changed files
with
774 additions
and
15 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
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 @@ | ||
export { default as TagDetails } from './tagDetails'; |
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,31 @@ | ||
import global_BackgroundColor_light_100 from '@patternfly/react-tokens/dist/js/global_BackgroundColor_light_100'; | ||
import global_spacer_lg from '@patternfly/react-tokens/dist/js/global_spacer_lg'; | ||
import global_spacer_md from '@patternfly/react-tokens/dist/js/global_spacer_md'; | ||
import type React from 'react'; | ||
|
||
export const styles = { | ||
content: { | ||
paddingBottom: global_spacer_lg.value, | ||
paddingTop: global_spacer_lg.value, | ||
}, | ||
paginationContainer: { | ||
marginLeft: global_spacer_lg.value, | ||
marginRight: global_spacer_lg.value, | ||
}, | ||
pagination: { | ||
backgroundColor: global_BackgroundColor_light_100.value, | ||
paddingBottom: global_spacer_md.value, | ||
paddingTop: global_spacer_md.value, | ||
}, | ||
tableContainer: { | ||
marginLeft: global_spacer_lg.value, | ||
marginRight: global_spacer_lg.value, | ||
}, | ||
tagDetails: { | ||
minHeight: '100vh', | ||
}, | ||
toolbarContainer: { | ||
marginLeft: global_spacer_lg.value, | ||
marginRight: global_spacer_lg.value, | ||
}, | ||
} as { [className: string]: React.CSSProperties }; |
Oops, something went wrong.