mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-04 15:30:27 +00:00
fix(app): workspaces padding wonkiness (#9772)
This commit is contained in:
parent
d00b8df770
commit
368cd2af4c
1 changed files with 4 additions and 4 deletions
|
|
@ -1173,7 +1173,7 @@ export default function Layout(props: ParentProps) {
|
|||
|
||||
return (
|
||||
<Dialog title={language.t("workspace.delete.title")} fit>
|
||||
<div class="flex flex-col gap-4 px-2.5 pb-3">
|
||||
<div class="flex flex-col gap-4 pl-6 pr-2.5 pb-3">
|
||||
<div class="flex flex-col gap-1">
|
||||
<span class="text-14-regular text-text-strong">
|
||||
{language.t("workspace.delete.confirm", { name: name() })}
|
||||
|
|
@ -1253,7 +1253,7 @@ export default function Layout(props: ParentProps) {
|
|||
|
||||
return (
|
||||
<Dialog title={language.t("workspace.reset.title")} fit>
|
||||
<div class="flex flex-col gap-4 px-2.5 pb-3">
|
||||
<div class="flex flex-col gap-4 pl-6 pr-2.5 pb-3">
|
||||
<div class="flex flex-col gap-1">
|
||||
<span class="text-14-regular text-text-strong">
|
||||
{language.t("workspace.reset.confirm", { name: name() })}
|
||||
|
|
@ -1830,7 +1830,7 @@ export default function Layout(props: ParentProps) {
|
|||
size="large"
|
||||
onClick={(e: MouseEvent) => {
|
||||
loadMore()
|
||||
;(e.currentTarget as HTMLButtonElement).blur()
|
||||
;(e.currentTarget as HTMLButtonElement).blur()
|
||||
}}
|
||||
>
|
||||
{language.t("common.loadMore")}
|
||||
|
|
@ -2015,7 +2015,7 @@ export default function Layout(props: ParentProps) {
|
|||
size="large"
|
||||
onClick={(e: MouseEvent) => {
|
||||
loadMore()
|
||||
;(e.currentTarget as HTMLButtonElement).blur()
|
||||
;(e.currentTarget as HTMLButtonElement).blur()
|
||||
}}
|
||||
>
|
||||
{language.t("common.loadMore")}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue