com : resize 막기 , pagenation 화살표 제어

This commit is contained in:
Yesol Choi
2025-05-28 16:46:36 +09:00
parent 9f674143d7
commit 320a5363c4
2 changed files with 3 additions and 3 deletions

View File

@@ -168,7 +168,6 @@ const handleLinkClick = (e: MouseEvent, page = 1) => {
@click="(e: MouseEvent) => handleLinkClick(e, currentPage - 1)"
>
<VIcon icon="lucide:chevron-left" class="rtl-hidden" />
<VIcon icon="lucide:chevron-right" class="ltr-hidden" />
</RouterLink>
<RouterLink
:to="paginatedLink(currentPage + 1)"
@@ -177,7 +176,6 @@ const handleLinkClick = (e: MouseEvent, page = 1) => {
@keydown.enter.prevent="(e: MouseEvent) => (e.target as HTMLAnchorElement).click()"
@click="(e: MouseEvent) => handleLinkClick(e, currentPage + 1)"
>
<VIcon icon="lucide:chevron-left" class="ltr-hidden" />
<VIcon icon="lucide:chevron-right" class="rtl-hidden" />
</RouterLink>
<slot name="after-navigation" />

View File

@@ -49,7 +49,9 @@ label[for] {
.input,
.input:focus,
.textarea,
.textarea{
resize: none;
}
.textarea:focus {
box-shadow: none;
}