File tree 2 files changed +32
-19
lines changed
2 files changed +32
-19
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,10 @@ export default function Experience(){
24
24
</ div >
25
25
</ div >
26
26
< div className = "info-bar" >
27
- < span className = "info-bar__name" > Name</ span >
28
- < div className = "info-bar__divider-vertical" > </ div >
29
- < span className = "info-bar__skills" > Skills</ span >
30
- < div className = "info-bar__divider-vertical" > </ div >
31
- < span className = "info-bar__date-started" > Start Date</ span >
32
- < div className = "info-bar__divider-vertical" > </ div >
33
- < span className = "info-bar__date-started" > End Date</ span >
27
+ < div className = "info-bar__name" > Name</ div >
28
+ < div className = "info-bar__skills" > | Skills</ div >
29
+ < div className = "info-bar__date-started" > | Start Date</ div >
30
+ < div className = "info-bar__date-ended" > | End Date</ div >
34
31
</ div >
35
32
< div className = "divider-horizontal" > </ div >
36
33
< div className = "exp-container" >
Original file line number Diff line number Diff line change 25
25
width : 100% ;
26
26
}
27
27
.info-bar {
28
- display :flex ;
29
- flex-direction :row ;
30
- height : 2rem ;
28
+ // display:flex;
29
+ // flex-direction:row;
30
+ // display:grid;
31
+ // grid-template-columns: 2.9fr 2fr 1fr 1fr; // Adjust column sizes as needed
32
+ grid-template-columns : 2.8fr 2.2fr 1.5fr 1fr ; ;
33
+ // align-items: center;
34
+ // height: 2rem;
35
+ display : grid ;
36
+ /* Create 4 equal-width columns */
37
+ // grid-template-columns: repeat(4, 0.1fr);
38
+ /* Optional: spacing between columns */
39
+ // gap: 1rem;
31
40
32
41
& __name {
33
42
font-family : " SF-Pro Medium" ,-apple-system , BlinkMacSystemFont;
34
43
font-size : 0.7rem ;
35
44
font-weight :200 ;
36
- margin : 0.6rem ;
37
- margin-left : 2 rem ;
38
- margin-right : 13.5 rem ;
45
+ margin-top : 0.6rem ;
46
+ margin-bottom : 0.6 rem ;
47
+ margin-left : 0.6 rem ;
39
48
40
49
}
41
50
42
51
& __skills {
43
52
font-family : " SF-Pro Medium" ,-apple-system , BlinkMacSystemFont;
44
53
font-size : 0.7rem ;
45
54
font-weight :200 ;
46
- margin : 0.6rem ;
47
- margin-left : 0.6rem ;
48
- margin-right : 9.5rem ;
55
+ margin-top : 0.6rem ;
56
+ margin-bottom : 0.6rem ;
49
57
}
50
58
51
59
& __date-started {
52
60
font-family : " SF-Pro Medium" ,-apple-system , BlinkMacSystemFont;
53
61
font-size : 0.7rem ;
54
62
font-weight :200 ;
55
- margin : 0.6rem ;
56
- margin-left : 0.6rem ;
57
- margin-right : 4rem ;
63
+ margin-top : 0.6rem ;
64
+ margin-bottom : 0.6rem ;
65
+ white-space : nowrap ;
66
+ }
67
+ & __date-ended {
68
+ font-family : " SF-Pro Medium" ,-apple-system , BlinkMacSystemFont;
69
+ font-size : 0.7rem ;
70
+ font-weight :200 ;
71
+ margin-top : 0.6rem ;
72
+ margin-bottom : 0.6rem ;
73
+ margin-right : 2.5rem ;
58
74
white-space : nowrap ;
59
75
}
60
76
You can’t perform that action at this time.
0 commit comments