Skip to content

Commit

Permalink
fix(style): remove sidebar item extra padding and gap (#155)
Browse files Browse the repository at this point in the history
* fix: remove sidebar item extra padding and gap

* chore: run build:css
  • Loading branch information
imfing authored Oct 27, 2023
1 parent 2d2e8ae commit 141e0d8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
7 changes: 1 addition & 6 deletions assets/css/compiled/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1136,9 +1136,6 @@ video {
.pr-\[max\(env\(safe-area-inset-right\)\2c 1\.5rem\)\] {
padding-right: max(env(safe-area-inset-right),1.5rem);
}
.pt-1 {
padding-top: 0.25rem;
}
.pt-4 {
padding-top: 1rem;
}
Expand Down Expand Up @@ -1386,9 +1383,6 @@ video {
.ease-in {
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.\[-webkit-tap-highlight-color\:transparent\] {
-webkit-tap-highlight-color: transparent;
}
Expand Down Expand Up @@ -2480,6 +2474,7 @@ article details > summary::before {
}
.sidebar-container li.open > div {
height: auto;
padding-top: 0.25rem;
}
.sidebar-container li.open > a > span > svg > path {
--tw-rotate: 90deg;
Expand Down
2 changes: 1 addition & 1 deletion assets/css/components/sidebar.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@apply h-0;
}
li.open > div {
@apply h-auto;
@apply h-auto pt-1;
}
li.open > a > span > svg > path {
@apply rotate-90;
Expand Down
2 changes: 0 additions & 2 deletions exampleSite/hugo_stats.json
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@
"duration-200",
"duration-75",
"ease-in",
"ease-in-out",
"filename",
"first:mt-0",
"flex",
Expand Down Expand Up @@ -455,7 +454,6 @@
"pr-[max(env(safe-area-inset-right),1.5rem)]",
"print:bg-transparent",
"print:hidden",
"pt-1",
"pt-4",
"pt-6",
"pt-8",
Expand Down
4 changes: 2 additions & 2 deletions layouts/partials/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@
</li>
{{- end -}}
{{- else -}}
<div class="pt-1 ltr:pr-0 overflow-hidden transition-all ease-in-out duration-200">
<div class="ltr:pr-0 overflow-hidden">
<ul class='relative flex flex-col gap-1 before:absolute before:inset-y-1 before:w-px before:bg-gray-200 before:content-[""] ltr:ml-3 ltr:pl-3 ltr:before:left-0 rtl:mr-3 rtl:pr-3 rtl:before:right-0 dark:before:bg-neutral-800'>
{{- range $items.ByWeight }}
{{- $active := eq $pageURL .RelPermalink -}}
{{- $shouldOpen := or (.Params.sidebar.open) (.IsAncestor $page) $active | default true }}
{{- $title := .LinkTitle | default .File.BaseFileName -}}
<li class="flex flex-col gap-1 {{ if $shouldOpen }}open{{ end }}">
<li class="flex flex-col {{ if $shouldOpen }}open{{ end }}">
{{- template "sidebar-item-link" dict "context" . "active" $active "title" $title "link" .RelPermalink -}}
{{- if and $toc $active -}}
{{ template "sidebar-toc" dict "page" . }}
Expand Down

0 comments on commit 141e0d8

Please sign in to comment.