Update icons to use p-2

This commit is contained in:
Chris Banes 2022-11-17 10:05:20 +00:00
parent 3a4e976273
commit 9993c53476
2 changed files with 5 additions and 5 deletions

View file

@ -1550,10 +1550,6 @@ select {
min-width: 1.8rem; min-width: 1.8rem;
} }
.min-w-\[2\.4rem\] {
min-width: 2.4rem;
}
.min-w-\[220px\] { .min-w-\[220px\] {
min-width: 220px; min-width: 220px;
} }
@ -1870,6 +1866,10 @@ select {
padding: 1rem; padding: 1rem;
} }
.p-2 {
padding: 0.5rem;
}
.p-1 { .p-1 {
padding: 0.25rem; padding: 0.25rem;
} }

View file

@ -1,6 +1,6 @@
{{ $icon := resources.Get (print "icons/" . ".svg") }} {{ $icon := resources.Get (print "icons/" . ".svg") }}
{{ if $icon }} {{ if $icon }}
<span class="relative icon"> <span class="relative icon p-2">
{{ $icon.Content | safeHTML }} {{ $icon.Content | safeHTML }}
</span> </span>
{{ end }} {{ end }}