Skip to content

Commit 317d4aa

Browse files
committed
fix: height
1 parent 59911fe commit 317d4aa

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

apps/web/app/error.vue

+18-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,13 @@ useHead({
4444
{{ $t('not_found') }}
4545
</h1>
4646
<div class="actions">
47-
<VFLinkButton background-color="white" color="vue-blue" target="" href="/">
47+
<VFLinkButton
48+
class="action"
49+
background-color="white"
50+
color="vue-blue"
51+
target=""
52+
href="/"
53+
>
4854
{{ $t('back_to_top') }}
4955
</VFLinkButton>
5056
</div>
@@ -72,14 +78,25 @@ h1 {
7278
height: var(--height-button);
7379
border-radius: var(--height-button);
7480
}
81+
.action {
82+
--height-button: 66px;
83+
84+
height: var(--height-button);
85+
}
7586
@media (--tablet) {
7687
.actions {
7788
--height-button: 49px;
7889
}
90+
.action {
91+
--height-button: 49px;
92+
}
7993
}
8094
@media (--mobile) {
8195
.actions {
8296
--height-button: 49px;
8397
}
98+
.action {
99+
--height-button: 49px;
100+
}
84101
}
85102
</style>

0 commit comments

Comments
 (0)