правка версии
This commit is contained in:
Kataev Denis 2022-09-26 12:11:27 +04:00
parent d6ce8f9da6
commit 6625b8502d
3 changed files with 16 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"name": "fashion-logica",
"version": "0.0.0",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve --host 192.168.0.179",

View File

@ -63,7 +63,13 @@
</li>
</ul>
</nav>
<span class="version">
v{{version}}
</span>
<span
class="version"
[ngClass]="{
version: true,
bottom: currentPage.code === PageCode.Auth
}"
>
v{{ version }}
</span>
</div>

View File

@ -59,7 +59,7 @@
}
}
li:nth-child(odd) {
background-color: #EBEBEB;
background-color: #ebebeb;
}
}
}
@ -72,7 +72,11 @@
top: 69px;
}
.version {
opacity: .5;
opacity: 0.5;
&.bottom {
position: absolute;
bottom: 8px;
}
}
}
}