vimp-engine 0.30.0 → 0.30.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/client/style.css +13 -7
package/package.json
CHANGED
package/src/client/style.css
CHANGED
|
@@ -442,7 +442,6 @@ body.hide-cursor {
|
|
|
442
442
|
text-shadow: 1px 1px 1px #000;
|
|
443
443
|
font-size: 12px;
|
|
444
444
|
line-height: 15px;
|
|
445
|
-
border-radius: 4px;
|
|
446
445
|
}
|
|
447
446
|
|
|
448
447
|
.card h2 {
|
|
@@ -546,21 +545,27 @@ body.hide-cursor {
|
|
|
546
545
|
#auth-link {
|
|
547
546
|
font-size: 9px;
|
|
548
547
|
margin: 0;
|
|
549
|
-
padding: 0
|
|
548
|
+
padding: 0 5px;
|
|
550
549
|
}
|
|
551
550
|
|
|
552
551
|
#lobby-footer {
|
|
553
|
-
width: calc(var(--lobby-width) + var(--lobby-panel-pad));
|
|
554
552
|
font-size: 10px;
|
|
555
553
|
padding: 0;
|
|
556
|
-
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
#lobby-footer p {
|
|
557
|
+
margin: 0 5px;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
#lobby-footer p:not(:last-child)::after {
|
|
561
|
+
content: '|';
|
|
562
|
+
padding-left: 10px;
|
|
557
563
|
}
|
|
558
564
|
|
|
559
565
|
/* три равные ячейки: середину держит не space-between, а сама равность —
|
|
560
566
|
любая из крайних бывает пустой (у пакета игры может не быть метаданных),
|
|
561
567
|
и при space-between версия съезжала бы с центра */
|
|
562
|
-
#auth-link p
|
|
563
|
-
#lobby-footer p {
|
|
568
|
+
#auth-link p {
|
|
564
569
|
margin: 0;
|
|
565
570
|
flex: 1;
|
|
566
571
|
}
|
|
@@ -888,7 +893,8 @@ body.hide-cursor {
|
|
|
888
893
|
колонку не нужно: с ним align-items: center увёл бы его влево на
|
|
889
894
|
половину поля */
|
|
890
895
|
#lobby-footer {
|
|
891
|
-
|
|
896
|
+
justify-content: flex-end;
|
|
897
|
+
width: calc(var(--lobby-width) + var(--lobby-panel-pad) * 2);
|
|
892
898
|
}
|
|
893
899
|
|
|
894
900
|
/* в столбик высоту строкой никто не задаёт — возвращаем слой в поток,
|