File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ footer {
36
36
display : flex ;
37
37
flex-direction : row ;
38
38
flex-wrap : wrap ;
39
+ align-items : center ;
39
40
justify-content : center ;
40
41
margin : 0 ;
41
42
padding : 0 ;
@@ -91,6 +92,13 @@ header {
91
92
border-color : var (--header-link-highlight );
92
93
}
93
94
}
95
+
96
+ li .portal {
97
+ display : flex ;
98
+ align-items : center ;
99
+ justify-content : center ;
100
+ height : 100% ;
101
+ }
94
102
}
95
103
96
104
@media screen and (max-width : $mobile-breakpoint ) {
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ section.search {
111
111
112
112
nav > ul > li .search > form {
113
113
grid-template-columns : auto 30px ;
114
- max-width : 160 px ;
114
+ max-width : 140 px ;
115
115
116
116
input [type = ' search' ] {
117
117
padding : 5px ;
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ enum NavMenuItem {
37
37
return . li(
38
38
. a(
39
39
. href( SiteURL . addAPackage. relativeURL ( ) ) ,
40
- " Add a Package "
40
+ " Add Package "
41
41
)
42
42
)
43
43
case . blog:
@@ -68,9 +68,14 @@ enum NavMenuItem {
68
68
)
69
69
case . portal:
70
70
return . li(
71
+ . class( " portal " ) ,
71
72
. a(
72
73
. href( SiteURL . portal. relativeURL ( ) ) ,
73
- " Portal "
74
+ . img(
75
+ . alt( " Portal " ) ,
76
+ . src( SiteURL . images ( " portal.svg " ) . relativeURL ( ) ) ,
77
+ . width( 20 )
78
+ )
74
79
)
75
80
)
76
81
}
You can’t perform that action at this time.
0 commit comments