Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ Homestead.yaml
auth.json
npm-debug.log
yarn-error.log
.env
.env.production
/.fleet
/.idea
/.vscode
Expand Down
12 changes: 8 additions & 4 deletions resources/js/Components/Settings/LinkManager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ export default function LinkManager({ value, onChange }: LinkManagerProps) {
return (
<div>
<div className="mb-3 flex items-center justify-between">
<h3 className="text-sm font-semibold">Links</h3>
<h3 className="text-sm font-semibold text-gray-900 dark:text-gray-100">
Links
</h3>
<Button
size="small"
variant="secondary"
Expand All @@ -107,7 +109,9 @@ export default function LinkManager({ value, onChange }: LinkManagerProps) {
</div>

{links.length === 0 ? (
<p className="text-sm italic text-gray-500">No links added yet.</p>
<p className="text-sm italic text-gray-500 dark:text-gray-400">
No links added yet.
</p>
) : (
<DragDropContext onDragEnd={handleDragEnd}>
<Droppable droppableId="links">
Expand Down Expand Up @@ -137,10 +141,10 @@ export default function LinkManager({ value, onChange }: LinkManagerProps) {
<Bars3Icon className="h-4 w-4" />
</div>
<div>
<div className="text-sm font-medium">
<div className="text-sm font-medium text-gray-900 dark:text-gray-100">
{link.label}
</div>
<div className="max-w-md truncate font-mono text-sm text-gray-500">
<div className="max-w-md truncate font-mono text-sm text-gray-500 dark:text-gray-400">
{link.href}
{link.is_external && (
<span className="ml-1 text-xs italic">
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Admin/Settings/Index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default function SettingsIndex({
return (
<Authenticated
header={
<h2 className="text-xl font-semibold leading-tight text-gray-800">
<h2 className="text-xl font-semibold leading-tight text-gray-800 dark:text-gray-100">
Settings
</h2>
}
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.