-
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.
- Loading branch information
1 parent
6ad1253
commit 20b099a
Showing
11 changed files
with
110 additions
and
72 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
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,81 @@ | ||
.boolean { | ||
// buttons | ||
.btn-secondary { | ||
&:first-of-type { | ||
@include btn-style($positive); | ||
} | ||
&:nth-of-type(2) { | ||
@include btn-style($yellow); | ||
} | ||
&:last-of-type { | ||
@include btn-style($negative); | ||
} | ||
} | ||
} | ||
|
||
.boolean-negative-first { | ||
// buttons | ||
.btn-secondary { | ||
&:first-of-type { | ||
@include btn-style($negative); | ||
} | ||
&:nth-of-type(2) { | ||
@include btn-style($yellow); | ||
} | ||
&:last-of-type { | ||
@include btn-style($positive); | ||
} | ||
} | ||
} | ||
|
||
.neutral { | ||
// buttons | ||
.btn-secondary { | ||
&:first-of-type { | ||
@include btn-style($yellow); | ||
} | ||
&:last-of-type { | ||
@include btn-style($blue); | ||
} | ||
} | ||
} | ||
|
||
.neutral-inverted { | ||
// buttons | ||
.btn-secondary { | ||
&:first-of-type { | ||
@include btn-style($blue); | ||
} | ||
&:last-of-type { | ||
@include btn-style($yellow); | ||
} | ||
} | ||
} | ||
|
||
.btn.submit { | ||
@include btn-style($primary); | ||
} | ||
|
||
.gradient-7 { | ||
.is-1 { | ||
color: #d843e2; | ||
} | ||
.is-2 { | ||
color: #c863e8; | ||
} | ||
.is-3 { | ||
color: #bb7ae9; | ||
} | ||
.is-4 { | ||
color: #ab86f1; | ||
} | ||
.is-5 { | ||
color: #8b9bfa; | ||
} | ||
.is-6 { | ||
color: #42b5ff; | ||
} | ||
.is-7 { | ||
color: #0cc7f1; | ||
} | ||
} |
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