forked from nand2tetris/web-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Analytics Tracking (nand2tetris#179)
* Tracking acceptance banner. * Tracking for some chips buttons. Deploying and seeing what happens? prettier scss
- Loading branch information
1 parent
b2bce38
commit 8171681
Showing
8 changed files
with
335 additions
and
39 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,21 @@ | ||
#trackingBanner { | ||
background-color: ghostwhite; | ||
border-top: 1px solid black; | ||
position: absolute; | ||
padding: var(--spacing); | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
|
||
[role="button"] { | ||
&.accept { | ||
color: black; | ||
background-color: lightgreen; | ||
} | ||
|
||
&.reject { | ||
color: black; | ||
background-color: lightpink; | ||
} | ||
} | ||
} |
Oops, something went wrong.