Move TopRightMenu component out of Comment and into own file

This commit is contained in:
Benjamin Goering
2017-04-11 14:20:38 -07:00
parent 4d2e5ed81f
commit 58ffd61884
4 changed files with 197 additions and 228 deletions
@@ -0,0 +1,39 @@
.Toggleable:focus {
outline: none;
}
.IgnoreUserWizard {
background-color: #2E343B;
color: white;
padding: 1em;
max-width: 220px;
}
.IgnoreUserWizard header {
font-weight: bold;
}
.IgnoreUserWizard .textAlignRight {
text-align: right;
}
/**
* Up/Down Chevrons for the top right menu
*/
.chevron {
}
.chevron:before {
content: '⌃';
display: inline-block;
position: relative;
top: 0.25em;
}
/* Down Arrow */
.chevron.down:before {
display: inline-block;
position: relative;
transform: rotate(180deg);
top: 0;
/*top: -0.25em;*/
}