refactor: theming

This commit is contained in:
Anthony Fu 2022-11-23 10:16:31 +08:00
parent 9a77c7da2a
commit a4d235b6fe
22 changed files with 351 additions and 39 deletions

View file

@ -31,7 +31,7 @@ const aspectRatio = computed(() => {
:style="{
aspectRatio,
}"
border="~ border"
border="~ base"
object-cover rounded-lg
/>
</template>
@ -39,7 +39,7 @@ const aspectRatio = computed(() => {
<video
:poster="attachment.previewUrl"
controls
border="~ border"
border="~ base"
object-cover
:style="{
aspectRatio,

View file

@ -29,6 +29,6 @@ const date = computed(() => formatter.format(new Date(status.createdAt)))
{{ date }} · {{ status.application?.name || 'Unknown client' }}
</span>
</div>
<StatusActions :status="status" border="t border" pt-2 />
<StatusActions :status="status" border="t base" pt-2 />
</div>
</template>