fix(app): workspaces padding wonkiness (#9772)

This commit is contained in:
DNGriffin
2026-01-21 09:22:40 -06:00
committed by GitHub
parent d00b8df770
commit 368cd2af4c

View File

@@ -1173,7 +1173,7 @@ export default function Layout(props: ParentProps) {
return ( return (
<Dialog title={language.t("workspace.delete.title")} fit> <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"> <div class="flex flex-col gap-1">
<span class="text-14-regular text-text-strong"> <span class="text-14-regular text-text-strong">
{language.t("workspace.delete.confirm", { name: name() })} {language.t("workspace.delete.confirm", { name: name() })}
@@ -1253,7 +1253,7 @@ export default function Layout(props: ParentProps) {
return ( return (
<Dialog title={language.t("workspace.reset.title")} fit> <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"> <div class="flex flex-col gap-1">
<span class="text-14-regular text-text-strong"> <span class="text-14-regular text-text-strong">
{language.t("workspace.reset.confirm", { name: name() })} {language.t("workspace.reset.confirm", { name: name() })}
@@ -1830,7 +1830,7 @@ export default function Layout(props: ParentProps) {
size="large" size="large"
onClick={(e: MouseEvent) => { onClick={(e: MouseEvent) => {
loadMore() loadMore()
;(e.currentTarget as HTMLButtonElement).blur() ;(e.currentTarget as HTMLButtonElement).blur()
}} }}
> >
{language.t("common.loadMore")} {language.t("common.loadMore")}
@@ -2015,7 +2015,7 @@ export default function Layout(props: ParentProps) {
size="large" size="large"
onClick={(e: MouseEvent) => { onClick={(e: MouseEvent) => {
loadMore() loadMore()
;(e.currentTarget as HTMLButtonElement).blur() ;(e.currentTarget as HTMLButtonElement).blur()
}} }}
> >
{language.t("common.loadMore")} {language.t("common.loadMore")}