Skip to content
Merged
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
7 changes: 3 additions & 4 deletions website/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ button:disabled {
backdrop-filter: blur(24px);
background: rgba(10, 10, 14, 0.42);
border: 1px solid var(--stroke);
border-radius: 999px;
border-radius: 18px;
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
display: flex;
gap: 10px;
Expand All @@ -274,9 +274,8 @@ button:disabled {
font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
font-size: 0.88rem;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
white-space: pre-wrap;
word-break: break-word;
}

.install button {
Expand Down
2 changes: 1 addition & 1 deletion website/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ function compactCount(value: number): string {

let nextAnimationId = 0;
const installCommand =
"brew install --cask aurorascharff/clicklight/clicklight";
"brew tap aurorascharff/clicklight https://github.com/aurorascharff/ClickLight\nbrew install --cask aurorascharff/clicklight/clicklight";

// Mirrors Sources/ClickLight/ClickSettingOptions.swift so the submenu shows
// the same presets the macOS app does.
Expand Down
Loading