Skip to content

Commit 1c8aa35

Browse files
committed
fix(ui): fix ConnectionAnnouncementEdit dialog size and font
- changed the dialog threshold to `md` - changed the `textarea` font to monospace
1 parent 255dd1a commit 1c8aa35

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

ui/src/components/Namespace/ConnectionAnnouncementEdit.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<FormDialog
33
v-model="showDialog"
4+
threshold="md"
45
title="Change Connection Announcement"
56
icon="mdi-bullhorn"
67
confirm-text="Save Announcement"
@@ -124,3 +125,9 @@ const updateAnnouncement = async () => {
124125
125126
defineExpose({ showDialog });
126127
</script>
128+
129+
<style scoped lang="scss">
130+
:deep(textarea) {
131+
font-family: monospace;
132+
}
133+
</style>

0 commit comments

Comments
 (0)