правка версии
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", "name": "fashion-logica",
"version": "0.0.0", "version": "0.0.1",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve --host 192.168.0.179", "start": "ng serve --host 192.168.0.179",

View File

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

View File

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