mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 03:12:27 +09:00
com : resize 막기 , pagenation 화살표 제어
This commit is contained in:
@@ -168,7 +168,6 @@ const handleLinkClick = (e: MouseEvent, page = 1) => {
|
|||||||
@click="(e: MouseEvent) => handleLinkClick(e, currentPage - 1)"
|
@click="(e: MouseEvent) => handleLinkClick(e, currentPage - 1)"
|
||||||
>
|
>
|
||||||
<VIcon icon="lucide:chevron-left" class="rtl-hidden" />
|
<VIcon icon="lucide:chevron-left" class="rtl-hidden" />
|
||||||
<VIcon icon="lucide:chevron-right" class="ltr-hidden" />
|
|
||||||
</RouterLink>
|
</RouterLink>
|
||||||
<RouterLink
|
<RouterLink
|
||||||
:to="paginatedLink(currentPage + 1)"
|
:to="paginatedLink(currentPage + 1)"
|
||||||
@@ -177,7 +176,6 @@ const handleLinkClick = (e: MouseEvent, page = 1) => {
|
|||||||
@keydown.enter.prevent="(e: MouseEvent) => (e.target as HTMLAnchorElement).click()"
|
@keydown.enter.prevent="(e: MouseEvent) => (e.target as HTMLAnchorElement).click()"
|
||||||
@click="(e: MouseEvent) => handleLinkClick(e, currentPage + 1)"
|
@click="(e: MouseEvent) => handleLinkClick(e, currentPage + 1)"
|
||||||
>
|
>
|
||||||
<VIcon icon="lucide:chevron-left" class="ltr-hidden" />
|
|
||||||
<VIcon icon="lucide:chevron-right" class="rtl-hidden" />
|
<VIcon icon="lucide:chevron-right" class="rtl-hidden" />
|
||||||
</RouterLink>
|
</RouterLink>
|
||||||
<slot name="after-navigation" />
|
<slot name="after-navigation" />
|
||||||
|
|||||||
@@ -49,7 +49,9 @@ label[for] {
|
|||||||
|
|
||||||
.input,
|
.input,
|
||||||
.input:focus,
|
.input:focus,
|
||||||
.textarea,
|
.textarea{
|
||||||
|
resize: none;
|
||||||
|
}
|
||||||
.textarea:focus {
|
.textarea:focus {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user