Skip to content

Commit b6eaea4

Browse files
committed
Fix CSS variable typos in about styles
1 parent c0e2f60 commit b6eaea4

2 files changed

Lines changed: 25 additions & 3 deletions

File tree

flake.nix

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
3+
4+
outputs = { self, nixpkgs }:
5+
let
6+
system = "x86_64-linux";
7+
pkgs = nixpkgs.legacyPackages.${system};
8+
in {
9+
devShells.${system}.default = pkgs.mkShell {
10+
buildInputs = with pkgs; [
11+
nodejs_20
12+
python3
13+
pkg-config
14+
cairo
15+
pango
16+
libpng
17+
libjpeg
18+
giflib
19+
librsvg
20+
pixman
21+
];
22+
};
23+
};
24+
}

src/components/about/styles.module.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ div .row {
7979
.small_card_position {
8080
font-size: 16px;
8181
font-family: var(--ifm-font-family-roboto);
82-
color: var(---ifm-text-color);
8382
font-style: normal;
8483
font-weight: 400;
8584
line-height: 24px;
@@ -92,15 +91,14 @@ div .row {
9291
.large_card_complete_name {
9392
font-family: var(--ifm-font-family-roboto);
9493
font-size: 28px;
95-
color: var(---ifm-text-color);
9694
font-style: normal;
9795
font-weight: 400;
9896
line-height: 40px;
9997
color: var(--ifm-color-primary-p2);
10098
}
10199

102100
.large_card_position {
103-
font-size: var(--ifm--font-size-normal);
101+
font-size: var(--ifm-font-size-normal);
104102
font-family: var(--ifm-font-family-roboto);
105103
color: var(--ifm-color-primary-p2);
106104
font-style: normal;

0 commit comments

Comments
 (0)