-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApp.scss
91 lines (73 loc) · 1.6 KB
/
App.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@import '@patternfly/react-styles/css/utilities/Spacing/spacing.css',
'@patternfly/react-styles/css/utilities/Text/text.css',
'@patternfly/react-styles/css/utilities/Alignment/alignment.css',
'@patternfly/react-styles/css/utilities/Sizing/sizing.css',
'@patternfly/react-styles/css/utilities/Display/display.css';
html,
body,
#root {
width: 100%;
padding: 0;
margin: 0;
}
#root {
height: inherit;
}
.pf-c-breadcrumb__link {
--pf-c-breadcrumb__link--Color: 'unset';
}
a {
text-decoration: none;
color: unset;
}
.pf-c-page__main {
overflow: unset;
}
.pf-c-button.pf-m-primary {
--pf-c-button--m-primary--BackgroundColor: #61bffa;
padding: 12px 16px;
}
.pf-c-button.pf-m-secondary {
--pf-c-button--after--BorderColor: #61bffa;
--pf-c-button--m-secondary--Color: #61bffa;
}
.pf-c-button.pf-m-link {
--pf-c-button--m-link--Color: 'unset';
}
.pf-c-tabs__item.pf-m-current button span {
font-weight: 600;
}
.pf-c-page {
--pf-c-page--BackgroundColor: #fff;
}
.pf-c-tabs__item.pf-m-current {
--pf-c-tabs__link--after--BorderColor: rgba(120, 200, 250);
--pf-c-tabs__link--Color: #000000;
}
.pf-c-tabs {
--pf-c-tabs--before--BorderBottomWidth: 0;
&__link:hover {
--pf-c-tabs--before--BorderBottomWidth: 0;
}
&:hover {
--pf-c-tabs--before--BorderBottomWidth: 0;
}
}
.pf-c-chip {
--pf-c-chip--BackgroundColor: #eeeeee;
--pf-c-chip--BorderRadius: 16px;
padding: 4px 12px;
}
.pf-c-backdrop {
--pf-c-backdrop--ZIndex: 9999;
}
.pf-c-select__menu {
overflow: auto;
max-height: 200px;
}
.rounded {
border-radius: 8px;
}
.capitalize {
text-transform: capitalize;
}