Sam Potts
banner
sampotts.dev
Sam Potts
@sampotts.dev
Design Engineer. Father of two boys. Built plyr.io.
Currently: Released.so,
Previously: Amazon, Search.io, Selz (acquired by Amazon).
sampotts.dev
I'd not be surprised if the $20-per-device was somehow for US only customers...
January 3, 2025 at 5:33 AM
My wife constantly has scented candles on the go and yet we have two kids 🤔 I'm calling BS.
November 18, 2024 at 12:08 PM
Seems like it's been massively improved in a recent version, according to the last couple of reviews. It seems pretty good in my testing too 👍
November 16, 2024 at 3:14 AM
You're right! I'll have to go it another go. Have you tried the browser extension for Chromium browsers? Reviews seem to indicate it's not so great.
November 15, 2024 at 11:46 AM
I just wish the Passwords app supported storing card details and 2FA codes. Then I'd go all in and ditch 1Password.

Safari is nice but still has it's quirks which annoy me; weird rendering and slow dev tools being the main issues.
November 15, 2024 at 5:20 AM
...then use that in your config:

```
const config: Config = {
theme: {
extend: {
backgroundImage: vibrantGradients,
}
}
}
export default config;
```

Ideally, Tailwind would use oklch color space throughout but that's coming later as far as I can see.
November 12, 2024 at 12:57 AM
First import the default theme to amend the gradients.

```
import defaultTheme from 'tailwindcss/defaultTheme';

const vibrantGradients = Object.fromEntries(
Object.entries(defaultTheme.backgroundImage).map(([k, g]) => [k, g.replace('gradient(', 'gradient(in oklch ')]),
);
```
November 12, 2024 at 12:57 AM
It seems to favor the old iMacs and MacBook Pro. The chair looks uncomfortable that's for sure.
November 9, 2024 at 5:11 AM
Totally agree. You've gotta use whatever it takes so you ship awesome features to customers.
November 8, 2024 at 12:20 PM
Cheers for getting back to me. Unfortunately not as they're drastically different themes and so the resulting CSS is too. We're using PostCSS/Tailwind if it makes any difference. I'll keep trying different solutions but I wasn't sure if there was something I was missing in the docs.
November 7, 2024 at 11:37 PM
@bsky.app Can we get some code styling and maybe at a stretch, syntax highlighting, please?
November 7, 2024 at 1:12 AM
Next.js seems to "find" all the other theme files and build them, resulting in a stylesheet with styles from both globals.css files. How can we tell Next to ignore the other theme? The themes are in the same `src` directory in the package. Is that the cause perhaps?
November 7, 2024 at 1:02 AM