Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions app/styles/crate/settings/new-trusted-publisher.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
.form {
max-width: 600px;
margin: var(--space-m) auto;
}

.form-group, .buttons {
margin: var(--space-m) 0;
}

.publisher-select {
max-width: 440px;
max-width: 600px;
width: 100%;
padding-right: var(--space-m);
background-image: url("/assets/dropdown.svg");
Expand All @@ -19,7 +24,7 @@
}

.input {
max-width: 440px;
max-width: 600px;
width: 100%;
}

Expand Down
6 changes: 3 additions & 3 deletions app/templates/crate/settings/new-trusted-publisher.hbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h2>Add a new Trusted Publisher</h2>
<form local-class="form" {{on "submit" (prevent-default (perform this.saveConfigTask))}}>
<h2>Add a new Trusted Publisher</h2>

<form {{on "submit" (prevent-default (perform this.saveConfigTask))}}>
<div local-class="form-group">
{{#let (unique-id) as |id|}}
<label for={{id}} class="form-group-name">Publisher</label>
Expand Down Expand Up @@ -106,7 +106,7 @@
</div>
{{else}}
<div local-class="note">
The filename of the publishing workflow. This file should be present in the <code>.github/workflows/</code> directory of the repository configured above.
The filename of the publishing workflow. This file should be present in the <code>.github/workflows/</code> directory of the repository configured above. For example: <code>release.yml</code> or <code>publish.yml</code>.
</div>
{{/if}}
{{/let}}
Expand Down
Loading