File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
packages/web-components/src/components/cbp-tabs Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -104,12 +104,14 @@ cbp-tabs {
104
104
// TechDebt - dark colors CSS API not yet implemented in cbp-button
105
105
cbp-button :not (#fakeId ) {
106
106
align-self : flex-start ;
107
+ /* Restore this when button CSS API is fixed
107
108
--cbp-button-color-text: var(--cbp-tab-color);
108
109
--cbp-button-color-text-dark: var(--cbp-tab-color-dark);
109
110
--cbp-button-color-fill: var(--cbp-color-background-light);
110
111
--cbp-button-color-fill-dark: var(--cbp-color-background-dark);
111
112
--cbp-button-color-border: var(--cbp-color-gray-cool-30);
112
113
--cbp-button-color-border-dark: var(--cbp-color-gray-cool-60);
114
+ */
113
115
--cbp-button-border-radius : 0 ;
114
116
}
115
117
Original file line number Diff line number Diff line change @@ -154,6 +154,7 @@ export class CbpTabs {
154
154
variant = "square"
155
155
width = "3.5rem"
156
156
height = "3.5rem"
157
+ context = { this . context }
157
158
onClick = { ( ) => this . responsiveNav ( 'previous' ) }
158
159
ref = { el => ( this . previousControl = el ) }
159
160
>
@@ -180,6 +181,7 @@ export class CbpTabs {
180
181
variant = "square"
181
182
width = "3.5rem"
182
183
height = "3.5rem"
184
+ context = { this . context }
183
185
onClick = { ( ) => this . responsiveNav ( 'next' ) }
184
186
ref = { el => ( this . nextControl = el ) }
185
187
>
You can’t perform that action at this time.
0 commit comments