ThemeSwitch and Terminal Icon (close #15)

This commit is contained in:
2022-10-16 19:56:31 +02:00
parent 068a3f8f1e
commit 305cae119d
4 changed files with 22 additions and 7 deletions

View File

@ -42,6 +42,13 @@
}
}
.navIcon {
margin-right: 15px;
cursor: pointer;
display: block;
height: 2em;
}
@media screen and (min-width: 300px) {
.imgContainer {
display: block;

View File

@ -2,9 +2,17 @@
position: relative;
width: 1.5em;
height: 1.5em;
cursor: pointer;
& > * {
position: absolute;
opacity: 0;
transform: translate(0, 100%);
}
& > .selected {
opacity: 1;
transform: translate(0, 0);
}
.fadeOut {