Skip to content

Commit

Permalink
fix padding on dialogs
Browse files Browse the repository at this point in the history
  • Loading branch information
nikochiko committed Sep 23, 2024
1 parent bf27df5 commit 524122b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions daras_ai_v2/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

import gooey_gui as gui
import sentry_sdk
from django.db import transaction
from django.db.models import Sum
from django.utils import timezone
from django.utils.text import slugify
Expand Down Expand Up @@ -543,11 +542,11 @@ def _render_share_modal(self, dialog: gui.AlertDialogRef):
)

with gui.div(className="d-flex justify-content-between"):
self._render_copy_link_button(label="Copy Link", className="py-2 px-3")
self._render_copy_link_button(label="Copy Link", className="py-2 px-3 m-0")
if gui.button(
"Done",
type="primary",
className="py-2 px-5",
className="py-2 px-5 m-0",
):
if self.current_pr.visibility != published_run_visibility:
self.current_pr.add_version(
Expand Down

0 comments on commit 524122b

Please sign in to comment.