Skip to content

Commit 3605bef

Browse files
committed
fix: align activity log rows
1 parent 126d738 commit 3605bef

5 files changed

Lines changed: 13 additions & 7 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "veskforge",
33
"private": true,
4-
"version": "0.1.10",
4+
"version": "0.1.11",
55
"description": "Unofficial custom Vencord build manager for Vesktop.",
66
"license": "MIT",
77
"type": "module",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "veskforge"
3-
version = "0.1.10"
3+
version = "0.1.11"
44
description = "Unofficial custom Vencord build manager for Vesktop."
55
authors = ["Microck"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Veskforge",
4-
"version": "0.1.10",
4+
"version": "0.1.11",
55
"identifier": "dev.micr.veskforge",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

src/App.css

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -704,17 +704,18 @@ button:disabled {
704704
}
705705

706706
.activity-log {
707+
font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
707708
max-height: 260px;
708709
overflow-y: auto;
709710
overflow-x: hidden;
710711
}
711712

712713
.log-line {
713714
display: grid;
714-
grid-template-columns: 8px 58px minmax(0, 1fr);
715+
grid-template-columns: 10px 48px minmax(0, 1fr);
715716
min-height: 34px;
716717
align-items: start;
717-
gap: 12px;
718+
column-gap: 12px;
718719
border-bottom: 1px solid var(--line);
719720
padding: 8px 18px;
720721
}
@@ -727,9 +728,14 @@ button:disabled {
727728
padding-top: 1px;
728729
color: #99a2b1;
729730
font-size: 13px;
731+
font-variant-numeric: tabular-nums;
732+
line-height: 18px;
730733
}
731734

732735
.log-line .dot {
736+
width: 7px;
737+
height: 7px;
738+
justify-self: center;
733739
margin-top: 6px;
734740
}
735741

@@ -738,7 +744,7 @@ button:disabled {
738744
margin: 0;
739745
color: #c2cad7;
740746
font-size: 13px;
741-
line-height: 1.4;
747+
line-height: 18px;
742748
overflow-wrap: anywhere;
743749
white-space: pre-wrap;
744750
}

0 commit comments

Comments
 (0)