File tree Expand file tree Collapse file tree 3 files changed +31
-7
lines changed
srcCSS/components/4_pages Expand file tree Collapse file tree 3 files changed +31
-7
lines changed Original file line number Diff line number Diff line change 9
9
< span class ="uppercase font-semibold text-xs mr-4 "> Product:</ span >
10
10
{{ $currentTag := index (last 1 (split (delimit (split .URL "/") "," "") ",")) 0 }}
11
11
{{ range $name, $items := .Site.Taxonomies.changelog }}
12
- < a href ="{{ $.Site.BaseURL }} changelog/{{ $name | urlize | lower }} " class ="btn btn-small btn-grey mr-2 {{ if eq $currentTag $name}}active{{end}} "> {{ $name | upper}}</ a >
12
+ < a href ="/ changelog/{{ $name | urlize | lower }} " class ="btn btn-small btn-grey mr-2 {{ if eq $currentTag $name}}active{{end}} "> {{ $name | upper}}</ a >
13
13
{{ end }}
14
14
</ nav >
15
15
Original file line number Diff line number Diff line change 2
2
3
3
< div class ="flex flex-wrap mb-8 -mx-4 ">
4
4
5
- < div class ="w-full sm:w-1/4 md:w-1/5 px-4 ">
5
+ < div class ="w-full sm:w-1/4 md:w-1/5 px-4 flex flex-wrap ">
6
6
< div id ="filters " class ="button-group filters-group sm:py-4 sm:mt-4 ">
7
7
< div class ="flex flex-wrap sm:block ">
8
- < div class ="md:my-4 invisible sm:visible "> {{ partial "0_svgs/divider.svg" (dict "width" 170) }}</ div >
9
- < h4 class ="uppercase mb-4 w-full "> Created By</ h4 >
8
+ < div class ="md:my-4 invisible sm:visible text-center "> {{ partial "0_svgs/divider.svg" (dict "width" 170) }}</ div >
9
+ < h4 class ="uppercase mb-4 w-full md:text-center "> Created By</ h4 >
10
10
{{ partial "1_atoms/radio.html" (dict "ID" "linode" "Name" "created" "Value" ".linode" "Label" "Linode") . }}
11
11
{{ partial "1_atoms/radio.html" (dict "ID" "community" "Name" "created" "Value" ".community" "Label" "Community") . }}
12
12
</ div >
13
- < div class ="flex flex-wrap md :block ">
14
- < h4 class ="uppercase mb-4 w-full "> Language</ h4 >
13
+ < div class ="flex flex-wrap sm :block ">
14
+ < h4 class ="uppercase mb-4 w-full md:text-center "> Language</ h4 >
15
15
{{range ($.Site.GetPage "taxonomyTerm" "languages").Pages }}
16
16
{{ partial "1_atoms/radio.html" (dict "ID" (lower (replace .Title "." "-")) "Name" "language" "Value" (print "." (lower (replace .Title "." "-"))) "Label" .Title) . }}
17
17
{{end}}
18
18
</ div >
19
19
< button class ="text-BaseBlue underline mt-4 " onclick ="uncheckAll('filters') "> Reset Filters</ button >
20
+ < div class ="md:block md:text-center mt-16 ">
21
+ < h4 class ="uppercase mb-4 w-full community-header "> Want More Help?</ h4 >
22
+ < a href ="https://linode.com/community/questions " target ="_blank " class ="btn btn-small block text-center "> Visit Linode Community</ a >
23
+ </ div >
20
24
</ div >
21
25
</ div >
22
26
Original file line number Diff line number Diff line change 1
1
.lib-item .bg-ThemeCell {
2
2
min-height : 145px ;
3
- }
3
+ }
4
+
5
+ .community-header : before {
6
+ @apply border-BaseGreen;
7
+ content : "" ;
8
+ display : block;
9
+ margin-bottom : 24px ;
10
+ box-sizing : border-box;
11
+ height : 2px ;
12
+ width : 50px ;
13
+ border-width : 2px ;
14
+ border-style : solid;
15
+ }
16
+
17
+ @screen md {
18
+
19
+ .community-header : before {
20
+ margin-left : auto;
21
+ margin-right : auto;
22
+ }
23
+ }
You can’t perform that action at this time.
0 commit comments