|
@@ -15,7 +15,7 @@ export const Component = createUIComp({
|
|
|
<div
|
|
|
class={cx(rootStyles, " pl-0.28rem")}
|
|
|
style={{
|
|
|
- backgroundImage: `linear-gradient(#fff 1.3rem,${value.themeColor} 1.3rem, ${value.themeColor} 80%, #fff 80%)`,
|
|
|
+ backgroundImage: `linear-gradient(#fff 1.3rem,${value.themeColor} 1.3rem, ${value.themeColor} 85%, #fff 85%)`,
|
|
|
}}
|
|
|
>
|
|
|
<div class="h-1.3rem">
|
|
@@ -26,14 +26,20 @@ export const Component = createUIComp({
|
|
|
class="w-6.22rem h-6.22rem object-cover -ml-0.28rem"
|
|
|
/>
|
|
|
<div class="absolute right-1rem top-3rem">
|
|
|
- <Text.Component compId={children.colorText?.id} />
|
|
|
+ <div
|
|
|
+ class="p-0.08rem pt-1rem border-light-50 border-6px border-solid"
|
|
|
+ style={{
|
|
|
+ backgroundColor: value.themeColor,
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ <div class="px-0.33rem py-0.06rem bg-light-50">
|
|
|
+ <Text.Component compId={children.colorText?.id} />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <div class="flex flex-row-reverse">
|
|
|
- <div class="w-4.75rem px-0.35rem py-0.55rem bg-light-50 border-r-cool-gray-900">
|
|
|
- <Text.Component
|
|
|
- compId={children.text?.id}
|
|
|
- // class=""
|
|
|
- />
|
|
|
+ <div class="flex flex-row-reverse mt-0.5rem mb-0.35rem">
|
|
|
+ <div class="w-4.75rem py-0.55rem bg-light-50 text-center border-dark-200 border-2 border-solid leading-2">
|
|
|
+ <Text.Component compId={children.text?.id} />
|
|
|
</div>
|
|
|
</div>
|
|
|
<Image.Component
|