added version number in the footer

This commit is contained in:
Gani Georgiev
2022-08-09 16:16:09 +03:00
parent 8b2b26c196
commit 8288da8372
21 changed files with 379 additions and 299 deletions

View File

@@ -19,13 +19,19 @@
transition: opacity var(--baseAnimationSpeed),
visibility var(--baseAnimationSpeed),
transform var(--baseAnimationSpeed);
transform: scale(0.94);
transform: translateY(2px);
white-space: pre-line;
@include hide();
&.active {
transform: scale(1);
@include show();
// positions
&.left {
transform: translateX(2px);
}
&.right {
transform: translateX(-2px);
}
// styles
&.code {
font-family: monospace;
white-space: pre-wrap;
@@ -33,4 +39,10 @@
min-width: 150px;
max-width: 340px;
}
// states
&.active {
transform: scale(1);
@include show();
}
}