refactor(upc): trigger arrow size

This commit is contained in:
Zack Spear
2023-06-01 00:38:22 -07:00
committed by Zack Spear
parent fe3b235cf8
commit ff556a5e9e
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ body {
width: 0;
height: 0;
top: -10px;
right: 38px;
right: 37px;
border-right: 11px solid transparent;
border-bottom: 11px solid var(--color-alpha);
border-left: 11px solid transparent;

View File

@@ -8,7 +8,7 @@ const props = withDefaults(defineProps<Props>(), {
</script>
<template>
<span
class="w-0 h-0 border-t-[6px] border-l-[6px] border-r-[6px] border-t-solid border-t-black border-l-solid border-l-transparent border-r-solid border-r-transparent transition-transform"
class="w-0 h-0 border-t-[4px] border-l-[4px] border-r-[4px] border-t-solid border-t-black border-l-solid border-l-transparent border-r-solid border-r-transparent transition-transform"
:class="{
'-rotate-180': open,
'rotate-0': !open,