enhance(terminal): replace ACard with div

This commit is contained in:
Jacky 2025-04-28 09:07:18 +00:00
parent 72071466b4
commit c4a9d03bb3
No known key found for this signature in database
GPG key ID: 215C21B10DF38B4D

View file

@ -126,7 +126,7 @@ onUnmounted(() => {
</script>
<template>
<ACard :title="$gettext('Terminal')">
<div>
<AAlert
v-if="insecureConnection"
class="mb-6"
@ -145,7 +145,7 @@ onUnmounted(() => {
id="terminal"
class="console"
/>
</ACard>
</div>
</template>
<style lang="less" scoped>
@ -158,6 +158,9 @@ onUnmounted(() => {
:deep(.xterm-viewport) {
border-radius: 5px;
@media (max-width: 512px) {
border-radius: 0;
}
}
}
</style>