0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-31 23:52:48 +00:00

fix glitch in newPage

This commit is contained in:
Víctor Losada Hernández
2025-11-15 17:25:05 +01:00
parent b78f5079df
commit f18a73e1ff

View File

@@ -1,12 +1,15 @@
.newPage { .newPage {
.navItem.save { .navItem.save {
.fadeInRight();
.transition(opacity);
background-color : @orange; background-color : @orange;
transition:all 0.2s;
&:hover { background-color : @green; } &:hover { background-color : @green; }
&.neverSaved { &.neverSaved {
.fadeOutRight(); translate:-100%;
opacity: 0; opacity: 0;
background-color :#333;
cursor:auto;
} }
} }
} }