Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDevMinerTV committed Oct 11, 2023
1 parent f06e62b commit 8c4d7b6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion internal/web/views/computer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h1 class="text-3xl">{{ .computer.CN }} ({{ .computer.SAMAccountName }})</h1>
<h2 class="mt-4 text-xl">Groups:</h2>
<div class="flex flex-col justify-between divide-y divide-gray-600">
{{ range .computer.Groups }}
<div class="list-outer-hocus:bg-gray-700/50 flex items-center transition-colors">
<div class="flex items-center transition-colors list-outer-hocus:bg-gray-700/50">
<a
href="/groups/{{ .DN }}"
class="flex w-full items-center gap-2 py-2 pl-3 transition-transform focus:outline-none hocus:translate-x-2 [&>svg]:text-gray-500 [&>svg]:hocus:text-white"
Expand Down
2 changes: 1 addition & 1 deletion internal/web/views/computers.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ <h1 class="mb-4 text-3xl">All computers</h1>

<div class="flex flex-col justify-between divide-y divide-gray-600">
{{ range .computers }}
<div class="list-outer-hocus:bg-gray-700/50 flex items-center transition-colors">
<div class="flex items-center transition-colors list-outer-hocus:bg-gray-700/50">
<a
href="/computers/{{ .DN }}"
class="flex w-full items-center gap-2 py-2 pl-3 transition-transform focus:outline-none hocus:translate-x-2 [&>svg]:text-gray-500 [&>svg]:hocus:text-white"
Expand Down
2 changes: 1 addition & 1 deletion internal/web/views/group.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h1 class="text-3xl">{{ .group.CN }}</h1>
<h2 class="mt-4 text-xl">Members:</h2>
<div class="flex flex-col justify-between divide-y divide-gray-600">
{{ range .group.Members }}
<div class="list-outer-hocus:bg-gray-700/50 flex items-center transition-colors">
<div class="flex items-center transition-colors list-outer-hocus:bg-gray-700/50">
<a
href="/users/{{ .DN }}"
class="flex w-full items-center gap-2 py-2 pl-3 transition-transform focus:outline-none hocus:translate-x-2 [&>svg]:text-gray-500 [&>svg]:hocus:text-white"
Expand Down
2 changes: 1 addition & 1 deletion internal/web/views/groups.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ <h1 class="mb-4 text-3xl">All groups</h1>

<div class="flex flex-col justify-between divide-y divide-gray-600">
{{ range .groups }}
<div class="list-outer-hocus:bg-gray-700/50 flex items-center transition-colors">
<div class="flex items-center transition-colors list-outer-hocus:bg-gray-700/50">
<a
href="/groups/{{ .DN }}"
class="flex w-full items-center gap-2 py-2 pl-3 transition-transform focus:outline-none hocus:translate-x-2 [&>svg]:text-gray-500 [&>svg]:hocus:text-white"
Expand Down
2 changes: 1 addition & 1 deletion internal/web/views/user.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h1 class="text-3xl">{{ .user.CN }} ({{ .user.SAMAccountName }})</h1>
<h2 class="mt-4 text-xl">Groups:</h2>
<div class="flex flex-col justify-between divide-y divide-gray-600">
{{ range .user.Groups }}
<div class="list-outer-hocus:bg-gray-700/50 flex items-center transition-colors">
<div class="flex items-center transition-colors list-outer-hocus:bg-gray-700/50">
<a
href="/groups/{{ .DN }}"
class="flex w-full items-center gap-2 py-2 pl-3 transition-transform focus:outline-none hocus:translate-x-2 [&>svg]:text-gray-500 [&>svg]:hocus:text-white"
Expand Down
2 changes: 1 addition & 1 deletion internal/web/views/users.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ <h1 class="mb-4 text-3xl">All users</h1>

<div class="flex flex-col justify-between divide-y divide-gray-600">
{{ range .users }}
<div class="list-outer-hocus:bg-gray-700/50 flex items-center transition-colors">
<div class="flex items-center transition-colors list-outer-hocus:bg-gray-700/50">
<a
href="/users/{{ .DN }}"
class="flex w-full items-center gap-2 py-2 pl-3 transition-transform focus:outline-none hocus:translate-x-2 [&>svg]:text-gray-500 [&>svg]:hocus:text-white"
Expand Down

0 comments on commit 8c4d7b6

Please sign in to comment.