Skip to content

Commit

Permalink
Update WidgetKordle.vue
Browse files Browse the repository at this point in the history
disable scroll, border
change default height
  • Loading branch information
pernucia committed Nov 20, 2024
1 parent d090875 commit 8e43f07
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/frontend/src/widgets/WidgetKordle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only

<template>
<div data-cy-mkw-kordle class="mkw-kordle" :style="{ height: widgetProps.height + 'px' }">
<iframe :class="kordle" src="https://kordle.kr/" ></iframe>
<iframe :class="kordle" src="https://kordle.kr/" frameborder="0" scrolling="no"></iframe>
</div>
</template>

Expand All @@ -19,7 +19,7 @@ const name = '꼬들';
const widgetPropsDef = {
height: {
type: 'number' as const,
default: 600,
default: 750,
},
};

Expand Down Expand Up @@ -51,5 +51,6 @@ defineExpose<WidgetComponentExpose>({
}
.kordle {
height: 100%;

}
</style>

0 comments on commit 8e43f07

Please sign in to comment.