We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fe92cc commit d0581c4Copy full SHA for d0581c4
src/index.css
@@ -2,11 +2,11 @@
2
@tailwind components;
3
@tailwind utilities;
4
5
-.blink {
6
- container-type: inline-size;
7
-}
8
-
9
@layer base {
+ .blink {
+ container-type: inline-size;
+ }
+
10
.dial-light {
11
--blink-bg-primary: #ffffff;
12
--blink-button: #2a2a2b;
src/ui/ActionLayout.tsx
@@ -103,10 +103,9 @@ export const ActionLayout = ({
103
className="block max-h-[100cqw] overflow-y-hidden px-5 pt-5"
104
>
105
<img
106
- className={clsx('w-full rounded-xl object-cover object-left', {
107
- 'aspect-auto': !form,
108
- 'aspect-[2/1]': form,
109
- })}
+ className={clsx(
+ 'aspect-auto w-full rounded-xl object-cover object-center',
+ )}
110
src={image}
111
alt="action-image"
112
/>
0 commit comments