mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 06:55:43 -06:00
fixed footer
This commit is contained in:
parent
4a45e5383b
commit
3053f9176f
2 changed files with 128 additions and 152 deletions
|
@ -1578,10 +1578,6 @@ select {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inline-flex {
|
|
||||||
display: inline-flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
@ -1602,10 +1598,6 @@ select {
|
||||||
height: 2rem;
|
height: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-6 {
|
|
||||||
height: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.h-full {
|
.h-full {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
@ -1626,6 +1618,10 @@ select {
|
||||||
min-height: 0px;
|
min-height: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.min-h-full {
|
||||||
|
min-height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.w-12 {
|
.w-12 {
|
||||||
width: 3rem;
|
width: 3rem;
|
||||||
}
|
}
|
||||||
|
@ -1922,10 +1918,6 @@ select {
|
||||||
padding: 0.25rem;
|
padding: 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-2 {
|
|
||||||
padding: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.px-6 {
|
.px-6 {
|
||||||
padding-left: 1.5rem;
|
padding-left: 1.5rem;
|
||||||
padding-right: 1.5rem;
|
padding-right: 1.5rem;
|
||||||
|
@ -2984,11 +2976,6 @@ body:has(#menu-controller:checked) {
|
||||||
background-color: rgba(var(--color-primary-100), var(--tw-bg-opacity));
|
background-color: rgba(var(--color-primary-100), var(--tw-bg-opacity));
|
||||||
}
|
}
|
||||||
|
|
||||||
.focus\:outline-none:focus {
|
|
||||||
outline: 2px solid transparent;
|
|
||||||
outline-offset: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.focus\:outline-dotted:focus {
|
.focus\:outline-dotted:focus {
|
||||||
outline-style: dotted;
|
outline-style: dotted;
|
||||||
}
|
}
|
||||||
|
@ -3001,16 +2988,6 @@ body:has(#menu-controller:checked) {
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.focus\:ring-2:focus {
|
|
||||||
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
||||||
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
||||||
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
||||||
}
|
|
||||||
|
|
||||||
.focus\:ring-inset:focus {
|
|
||||||
--tw-ring-inset: inset;
|
|
||||||
}
|
|
||||||
|
|
||||||
.group:hover .group-hover\:text-primary-600 {
|
.group:hover .group-hover\:text-primary-600 {
|
||||||
--tw-text-opacity: 1;
|
--tw-text-opacity: 1;
|
||||||
color: rgba(var(--color-primary-600), var(--tw-text-opacity));
|
color: rgba(var(--color-primary-600), var(--tw-text-opacity));
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
<div class="relative bg-white">
|
|
||||||
<div style="padding-left:0;padding-right:0"
|
<div style="padding-left:0;padding-right:0"
|
||||||
class="flex items-center justify-between px-4 py-6 sm:px-6 md:justify-start md:space-x-3">
|
class="flex items-center justify-between px-4 py-6 sm:px-6 md:justify-start md:space-x-3">
|
||||||
{{ if .Site.Params.Logo -}}
|
{{ if .Site.Params.Logo -}}
|
||||||
|
@ -26,8 +25,8 @@
|
||||||
|
|
||||||
{{ if .Site.Menus.main }}
|
{{ if .Site.Menus.main }}
|
||||||
{{ range .Site.Menus.main }}
|
{{ range .Site.Menus.main }}
|
||||||
<a href="{{ .URL }}" class="text-base font-medium text-gray-500 hover:text-gray-900"
|
<a href="{{ .URL }}" class="text-base font-medium text-gray-500 hover:text-gray-900" title="{{ .Title }}">{{
|
||||||
title="{{ .Title }}">{{ .Name | markdownify | emojify }}</a>
|
.Name | markdownify | emojify }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue