Skip to content

Commit b5c8b5a

Browse files
committed
fix spacing after SlugPreviewFormField
1 parent ca3fcbd commit b5c8b5a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

client/src/features/projectsV2/fields/SlugPreviewFormField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function SlugPreviewFormField<T extends FieldValues>({
4444
const url = `${baseUrl}${parentPath}`;
4545

4646
const slugPreview = (
47-
<div>
47+
<div className="mb-n1">
4848
<FormText className="me-2">
4949
The URL for this {entityName} will be{" "}
5050
<span className="fw-bold" data-cy={`${entityName}-url-preview`}>

client/src/styles/renku_bootstrap_customization.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// Functions: should be imported first
22
@import "~bootstrap/scss/functions";
33

4+
// Enable negative margins utility
5+
$enable-negative-margins: true;
6+
47
// Font
58
@import "./fonts/fonts";
69
$font-family-base: "Inter", sans-serif;

0 commit comments

Comments
 (0)