Skip to content

Commit e0284e4

Browse files
author
JorvanW
committed
removed div tag in css
fixed error in --space: clamp(6px, 6px + 2vw, 15px); Where "2vw" was missing "2" before "vw"
1 parent 4105246 commit e0284e4

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

Wireframe/style.css

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ As well as useful links to learn more */
2020
--paper: oklch(7 0 0);
2121
--ink: color-mix(in oklab, var(--color) 5%, rgb(19, 19, 31));
2222
--font: 100%/1.5 system-ui;
23-
--space: clamp(6px, 6px + vw, 15px);
23+
--space: clamp(6px, 6px + 2vw, 15px);
2424
--line: 1px solid;
2525
--container: 1280px;
2626
}
@@ -29,10 +29,6 @@ H1 {
2929
display: flex;
3030
justify-content: center;
3131
}
32-
#container {
33-
display: flex;
34-
justify-content: center;
35-
}
3632

3733
#Git-Branch-image {
3834
height: 105%

0 commit comments

Comments
 (0)