Skip to content

Commit b93a566

Browse files
Fix Homebrew install command on website (#77)
1 parent 3193a86 commit b93a566

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

website/app/globals.css

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ button:disabled {
260260
backdrop-filter: blur(24px);
261261
background: rgba(10, 10, 14, 0.42);
262262
border: 1px solid var(--stroke);
263-
border-radius: 999px;
263+
border-radius: 18px;
264264
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
265265
display: flex;
266266
gap: 10px;
@@ -274,9 +274,8 @@ button:disabled {
274274
font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
275275
font-size: 0.88rem;
276276
min-width: 0;
277-
overflow: hidden;
278-
text-overflow: ellipsis;
279-
white-space: nowrap;
277+
white-space: pre-wrap;
278+
word-break: break-word;
280279
}
281280

282281
.install button {

website/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ function compactCount(value: number): string {
302302

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

307307
// Mirrors Sources/ClickLight/ClickSettingOptions.swift so the submenu shows
308308
// the same presets the macOS app does.

0 commit comments

Comments
 (0)