@@ -126,20 +126,20 @@ $button-intents: (
126126
127127// N.B. this mixin cannot be used on pseudo element selectors because it will produce invalid CSS
128128@mixin pt-button () {
129- @include pt-button-default-colors () ;
129+ @include pt-button-default-colors ;
130130
131131 & :hover {
132- @include pt-button-hover () ;
132+ @include pt-button-hover ;
133133 }
134134
135135 & :active ,
136136 & .#{$ns } -active {
137- @include pt-button-active () ;
137+ @include pt-button-active ;
138138 }
139139
140140 & :disabled ,
141141 & .#{$ns } -disabled {
142- @include pt-button-disabled () ;
142+ @include pt-button-disabled ;
143143
144144 & .#{$ns } -active ,
145145 & .#{$ns } -active :hover {
@@ -232,7 +232,7 @@ $button-intents: (
232232
233233// N.B. this mixin cannot be used on pseudo element selectors because it will produce invalid CSS
234234@mixin pt-dark-button () {
235- @include pt-dark-button-default-colors () ;
235+ @include pt-dark-button-default-colors ;
236236
237237 & :hover ,
238238 & :active ,
@@ -241,17 +241,17 @@ $button-intents: (
241241 }
242242
243243 & :hover {
244- @include pt-dark-button-hover () ;
244+ @include pt-dark-button-hover ;
245245 }
246246
247247 & :active ,
248248 & .#{$ns } -active {
249- @include pt-dark-button-active () ;
249+ @include pt-dark-button-active ;
250250 }
251251
252252 & :disabled ,
253253 & .#{$ns } -disabled {
254- @include pt-dark-button-disabled () ;
254+ @include pt-dark-button-disabled ;
255255
256256 & .#{$ns } -active {
257257 background : $dark-button-background-color-active-disabled ;
@@ -300,7 +300,7 @@ $button-intents: (
300300
301301 & :disabled ,
302302 & .#{$ns } -disabled {
303- @include pt-dark-button-intent-disabled () ;
303+ @include pt-dark-button-intent-disabled ;
304304 }
305305}
306306
@@ -341,7 +341,7 @@ $button-intents: (
341341 }
342342
343343 .#{$ns } -dark & {
344- @include pt-dark-button-minimal () ;
344+ @include pt-dark-button-minimal ;
345345 }
346346
347347 @each $intent , $colors in $button-intents {
@@ -494,7 +494,7 @@ $dark-minimal-active-text-colors: (
494494 }
495495
496496 .#{$ns } -dark & {
497- @include pt-dark-button-outlined () ;
497+ @include pt-dark-button-outlined ;
498498 }
499499
500500 @each $intent , $colors in $button-intents {
0 commit comments