Skip to content

Commit b49a4f5

Browse files
authored
Merge pull request #4 from yordis/yordis/fix-responsive-header
fix responsive header
2 parents f1a817e + 290af66 commit b49a4f5

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

layouts/partials/header.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<header class="pt-6 pb-12 px-4">
22
<div class="max-w-screen-xl flex flex-col sm:flex-row items-center justify-center mx-auto">
33
<a href="{{ .Site.BaseURL }}"
4-
class="md:mr-15 font-bold text-gray-500 hover:text-gray-900 focus:outline-none focus:text-gray-900">
4+
class="sm:mr-15 font-bold text-gray-500 hover:text-gray-900 focus:outline-none focus:text-gray-900">
55
Event Modeling
66
</a>
7-
<nav class="flex items-center h-10 justify-center">
7+
<nav class="flex items-center h-10 justify-center space-x-10">
88
{{ range .Site.Menus.main }}
9-
<a href="{{ .URL }}"
10-
class="ml-10 font-medium text-gray-500 hover:text-gray-900 focus:outline-none focus:text-gray-900">
9+
<a href="{{ .URL }}" class="font-medium text-gray-500 hover:text-gray-900 focus:outline-none focus:text-gray-900">
1110
{{ .Name }}
1211
</a>
1312
{{ end }}

0 commit comments

Comments
 (0)