Skip to content

Commit c89bd67

Browse files
committed
style: store logo size in variable
1 parent 007c090 commit c89bd67

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

website/src/components/Navbar/styles.module.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@use "@/styles/colors";
22

33
$navbar-height: 76px;
4+
$logo-size: 60px;
45

56
.navbar {
67
z-index: 10;
@@ -27,8 +28,8 @@ $navbar-height: 76px;
2728
font-weight: 700;
2829

2930
> img {
30-
width: 60px;
31-
height: 60px;
31+
width: $logo-size;
32+
height: $logo-size;
3233
}
3334
}
3435
}

0 commit comments

Comments
 (0)